Skip to content

Commit

Permalink
Fixing Dark Mode Rendering Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
NickRoss committed Sep 26, 2024
1 parent 0573d96 commit 90304cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dashboard/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
--background-end-rgb: 255, 255, 255;
}

@media (prefers-color-scheme: dark) {
/* @media (prefers-color-scheme: dark) {
:root {
--foreground-rgb: 255, 255, 255;
--background-start-rgb: 0, 0, 0;
--background-end-rgb: 0, 0, 0;
}
}
} */

body {
color: rgb(var(--foreground-rgb));
Expand Down

0 comments on commit 90304cc

Please sign in to comment.