does this look better?!?!?!?!?
All checks were successful
Deploy & Publish Image / deploy (ubuntu-latest, 2.44.0) (push) Successful in 3m20s

Took 6 minutes
This commit is contained in:
Braydon 2024-10-10 15:45:35 -04:00
parent 74b20a7d7c
commit 091835f01a
2 changed files with 17 additions and 3 deletions

View File

@ -30,9 +30,9 @@ const RootLayout = async ({
<html lang="en"> <html lang="en">
<body <body
className="scroll-smooth antialiased" className="scroll-smooth antialiased"
style={{ // style={{
background: "var(--background-gradient)", // background: "var(--background-gradient)",
}} // }}
> >
<ThemeProvider <ThemeProvider
attribute="class" attribute="class"

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: hsl(var(--foreground));
background: hsl(var(--background));
font-family: Arial, Helvetica, sans-serif; font-family: Arial, Helvetica, sans-serif;
} }