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">
<body
className="scroll-smooth antialiased"
style={{
background: "var(--background-gradient)",
}}
// style={{
// background: "var(--background-gradient)",
// }}
>
<ThemeProvider
attribute="class"

View File

@ -2,7 +2,21 @@
@tailwind components;
@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 {
color: hsl(var(--foreground));
background: hsl(var(--background));
font-family: Arial, Helvetica, sans-serif;
}