From fca18152169c67c5f54f51dc22b511e522dee4f0 Mon Sep 17 00:00:00 2001 From: Tim Koch Date: Sun, 27 Oct 2024 11:25:55 +0100 Subject: [PATCH] Apply tailwind shadow to .box class Makes .box elements appear raised above the background. Only works in light mode! --- resources/css/app.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/css/app.css b/resources/css/app.css index 00a62a131..55d8d95f8 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -217,7 +217,7 @@ tr td:first-child { } .box { - @apply relative flex lg:flex-row flex-col p-2 transition-colors cursor-pointer min-h-[4rem] dark:bg-coolgray-100 bg-white border text-black dark:text-white hover:text-black border-neutral-200 dark:border-black hover:bg-neutral-100 dark:hover:bg-coollabs-100 dark:hover:text-white hover:no-underline; + @apply relative flex lg:flex-row flex-col p-2 transition-colors cursor-pointer min-h-[4rem] dark:bg-coolgray-100 shadow bg-white border text-black dark:text-white hover:text-black border-neutral-200 dark:border-black hover:bg-neutral-100 dark:hover:bg-coollabs-100 dark:hover:text-white hover:no-underline; } .box-boarding {