From 561bf48c748a43b71cd21e09e2dbd81f64cad50f Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 14 Aug 2023 06:31:04 -0700 Subject: [PATCH] fix: css dark theme rule --- tailwind.css | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/tailwind.css b/tailwind.css index 02516002..265b271b 100644 --- a/tailwind.css +++ b/tailwind.css @@ -66,11 +66,6 @@ pre { border: 1px solid theme(colors.gray.700); } -.dark code, -.dark pre { - @apply bg-gray-900; -} - .tag--button { @apply font-semibold; @apply py-2; @@ -93,11 +88,6 @@ pre { @apply inline-block; } -.dark .tag--button { - color: theme(colors.gray.900); - background: theme(colors.purple.400); -} - .tag--button:hover, .tag--button:active, .tag--button:focus { @@ -165,4 +155,9 @@ code[class*=language-], pre[class*=language-] { .link--icon:hover svg { color: theme(colors.pink.500) } + + .tag--button { + color: theme(colors.gray.900); + background: theme(colors.purple.400); + } } \ No newline at end of file