diff --git a/app/assets/css/tailwind.css b/app/assets/css/tailwind.css index 5bb8133..aa70775 100644 --- a/app/assets/css/tailwind.css +++ b/app/assets/css/tailwind.css @@ -36,6 +36,25 @@ --noise: 0; } +@layer components { + .glass-topfade { + background: linear-gradient( + 180deg, + rgba(255, 255, 255, 0.4) 0%, + rgba(255, 255, 255, 0.18) 45%, + rgba(255, 255, 255, 0) 100% + ); + } + + .glass-soft { + @apply bg-white/10 border border-white/10 backdrop-blur-md; + } + + .glass-bright { + @apply bg-white/30 border border-white/20 backdrop-blur-md; + } +} + @plugin "daisyui/theme" { name: "silk"; default: false; diff --git a/app/components/catalog/HubCard.vue b/app/components/catalog/HubCard.vue index d6999f7..89c0a82 100644 --- a/app/components/catalog/HubCard.vue +++ b/app/components/catalog/HubCard.vue @@ -19,14 +19,14 @@