fix: resolve persistent CSS compilation issues

Remove invalid imports and fix font mappings.

Co-authored-by: Jeff Emmett <46964190+Jeff-Emmett@users.noreply.github.com>
This commit is contained in:
v0 2025-09-03 13:21:42 +00:00
parent ecf8931757
commit d79245e4a1
1 changed files with 7 additions and 4 deletions

View File

@ -4,6 +4,8 @@
@custom-variant dark (&:is(.dark *));
:root {
--font-inter: var(--font-inter);
--font-playfair: var(--font-playfair);
--background: oklch(1 0 0);
--foreground: oklch(0.145 0 0);
--card: oklch(1 0 0);
@ -75,7 +77,8 @@
}
@theme inline {
/* optional: --font-sans, --font-serif, --font-mono if they are applied in the layout.tsx */
--font-sans: var(--font-inter);
--font-serif: var(--font-playfair);
--color-background: var(--background);
--color-foreground: var(--foreground);
--color-card: var(--card);
@ -116,10 +119,10 @@
@layer base {
* {
border-color: hsl(var(--border));
border-color: var(--color-border);
}
body {
background-color: hsl(var(--background));
color: hsl(var(--foreground));
background-color: var(--color-background);
color: var(--color-foreground);
}
}