Skip to content

Commit

Permalink
enforce dark mode (#24)
Browse files Browse the repository at this point in the history
## Why
Light mode is currently broken and forcing dark mode allows production
build to function properly.
## How
By removing light mode media queries from `index.css` and making buttons
inherit font color.
  • Loading branch information
rccsousa authored Nov 8, 2024
1 parent aab0f3b commit 74e66e5
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,6 @@ h1 {

button {
font: inherit;
color: inherit;
}

@media (prefers-color-scheme: light) {
:root {
color: #213547;
background-color: #ffffff;
}
a:hover {
color: #747bff;
}
button {
background-color: #f9f9f9;
}
}

0 comments on commit 74e66e5

Please sign in to comment.