From 2e567d12c99dc60f74b9c78f5352a08e7c227a1a Mon Sep 17 00:00:00 2001 From: Aaron Brethorst Date: Wed, 27 Mar 2024 11:55:40 -0700 Subject: [PATCH] Fixes CSS building in development and production Fixes a regression introduced in #83 --- frontend/styles/index.css | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/frontend/styles/index.css b/frontend/styles/index.css index af5c284..77dac7f 100644 --- a/frontend/styles/index.css +++ b/frontend/styles/index.css @@ -63,38 +63,38 @@ pre.highlight { } ::-webkit-scrollbar-track { - background-color : #686868; + background-color : #686868; } ::-webkit-scrollbar-thumb { - background: #424242; + background: #424242; } ::-webkit-scrollbar-thumb:hover { - background: #848484; + background: #848484; } @media (prefers-color-scheme: light) { - - ::-webkit-scrollbar-track { - background-color: #f3f3f3; - } + ::-webkit-scrollbar-track { + background-color: #f3f3f3; + } - ::-webkit-scrollbar-thumb { - background: #848484; - } + ::-webkit-scrollbar-thumb { + background: #848484; + } - ::-webkit-scrollbar-thumb:hover { - background: #333; - } + ::-webkit-scrollbar-thumb:hover { + background: #333; + } -.jsoneditor { - @apply !border-zinc-300; -} + .jsoneditor { + @apply !border-zinc-300; + } -.jsoneditor-menu { - @apply bg-gradient-to-br; - @apply from-green-600 to-green-700; + .jsoneditor-menu { + @apply bg-gradient-to-br; + @apply from-green-600 to-green-700; + } } @tailwind utilities;