Skip to content

Commit

Permalink
Fixes CSS building in development and production
Browse files Browse the repository at this point in the history
Fixes a regression introduced in #83
  • Loading branch information
aaronbrethorst committed Mar 27, 2024
1 parent c7b174d commit 2e567d1
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions frontend/styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit 2e567d1

Please sign in to comment.