fix flashing?
All checks were successful
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Successful in 2m21s

Took 9 minutes
This commit is contained in:
Braydon 2024-10-09 21:32:30 -04:00
parent ffc386ed93
commit 447da11d71

View File

@ -2,7 +2,21 @@
@tailwind components; @tailwind components;
@tailwind utilities; @tailwind utilities;
:root {
--background: 0 0% 100%;
--foreground: 240 10% 3.9%;
}
@media (prefers-color-scheme: dark) {
:root {
--background: 240 10% 3.9%;
--foreground: 0 0% 98%;
}
}
body { body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif; font-family: Arial, Helvetica, sans-serif;
} }
@ -14,8 +28,6 @@ body {
@layer base { @layer base {
:root { :root {
--background: 0 0% 100%;
--foreground: 240 10% 3.9%;
--card: 0 0% 100%; --card: 0 0% 100%;
--card-foreground: 240 10% 3.9%; --card-foreground: 240 10% 3.9%;
--popover: 0 0% 100%; --popover: 0 0% 100%;
@ -44,8 +56,6 @@ body {
} }
.dark { .dark {
--background: 240 10% 3.9%;
--foreground: 0 0% 98%;
--card: 240 10% 3.9%; --card: 240 10% 3.9%;
--card-foreground: 0 0% 98%; --card-foreground: 0 0% 98%;
--popover: 240 10% 3.9%; --popover: 240 10% 3.9%;