This commit is contained in:
Paul Fresnel
2024-11-07 02:59:39 +01:00
parent 69e41bfef5
commit 0060fb2402
6 changed files with 156 additions and 135 deletions
+7 -15
View File
@@ -2,20 +2,12 @@
@tailwind components;
@tailwind utilities;
:root {
--background: #ffffff;
--foreground: #171717;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
@apply bg-bakery-50 text-bakery-900;
}
@layer components {
.container {
@apply max-w-7xl mx-auto px-4 sm:px-6 lg:px-8;
}
}