From da0a7dc3cd2e48a028f70cd991b8e7118c276f0b Mon Sep 17 00:00:00 2001 From: buttercat1791 Date: Wed, 30 Apr 2025 23:10:09 -0500 Subject: [PATCH] Polish up some styles --- src/app.css | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/src/app.css b/src/app.css index 4c538de..cf8680e 100644 --- a/src/app.css +++ b/src/app.css @@ -233,6 +233,10 @@ .ul-leather li a { @apply text-gray-800 hover:text-primary-400 dark:text-gray-300 dark:hover:text-primary-500; } + + .link { + @apply underline cursor-pointer hover:text-primary-400 dark:hover:text-primary-500; + } } @layer components { @@ -319,5 +323,35 @@ } } } + + a { + @apply link; + } + + .imageblock { + @apply flex flex-col items-center; + + .title { + @apply text-sm text-center; + } + } + + .stemblock { + @apply bg-gray-100 dark:bg-gray-900 p-4 rounded-lg; + } + + table { + @apply w-full overflow-x-auto; + + caption { + @apply text-sm; + } + + thead, tbody { + th, td { + @apply border border-gray-200 dark:border-gray-700; + } + } + } } }