From 1b00a62088c3c926d0223933e41c080fddf3c255 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateus=20Felipe=20Gon=C3=A7alves?= Date: Mon, 12 Dec 2022 10:58:23 -0300 Subject: [PATCH] feat(ui): update table styles --- src/styles/main.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/styles/main.css b/src/styles/main.css index 82273584..3743d0a4 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -69,7 +69,7 @@ } th { - @apply bg-black/[.08] dark:bg-white/[.08] font-medium; + @apply bg-black/10 dark:bg-white/10 font-medium; strong { @apply font-black; @@ -77,8 +77,8 @@ } tbody tr { - @apply even:bg-black/[.02] dark:even:bg-white/[.02]; - @apply hover:bg-black/[.05] dark:bg-white/[.05] dark:hover:bg-white/[.05] even:hover:bg-black/[.05] dark:even:hover:bg-white/[.05]; + @apply bg-black/[.02] dark:bg-white/[.02]; + @apply even:bg-black/[.04] dark:even:bg-white/[.04]; } }