From 13da25fe509c719b9fe53db611aceabf29fadfba Mon Sep 17 00:00:00 2001 From: Jan-Willem Beenakker <90187768+jwmbeenakker@users.noreply.github.com> Date: Sat, 30 Aug 2025 13:08:49 +0200 Subject: [PATCH] [FIX] erroneous shadow behind cards in dark theme after tailwind upgrade --- modules/blox-tailwind/assets/css/components/cards.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/blox-tailwind/assets/css/components/cards.css b/modules/blox-tailwind/assets/css/components/cards.css index 794e600f5..9781965cf 100644 --- a/modules/blox-tailwind/assets/css/components/cards.css +++ b/modules/blox-tailwind/assets/css/components/cards.css @@ -8,7 +8,7 @@ } .hb-card { - @apply flex flex-col justify-start overflow-hidden rounded-lg border border-gray-200 text-current no-underline dark:shadow-none hover:shadow-gray-100 dark:hover:shadow-none shadow-gray-100 active:shadow-sm active:shadow-gray-200 transition-all duration-200; + @apply flex flex-col justify-start overflow-hidden rounded-lg border border-gray-200 text-current no-underline dark:shadow-transparent hover:shadow-gray-100 dark:hover:shadow-transparent shadow-gray-100 active:shadow-sm active:shadow-gray-200 transition-all duration-200; @apply hover:border-gray-300 bg-transparent shadow-sm hover:bg-slate-50 hover:shadow-md; border-color: rgb(var(--color-neutral-700)); }