Fix CSS compilation issues
- Remove broken tw-animate-css import from both globals.css files - Fix font variable references in styles/globals.css - Resolves CSS compilation errors that prevented successful builds
This commit is contained in:
parent
579eafa82d
commit
4ec159f158
|
|
@ -1,5 +1,4 @@
|
|||
@import "tailwindcss";
|
||||
@import "tw-animate-css";
|
||||
|
||||
:root {
|
||||
--font-inter: var(--font-inter);
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
@import 'tailwindcss';
|
||||
@import 'tw-animate-css';
|
||||
|
||||
@custom-variant dark (&:is(.dark *));
|
||||
|
||||
|
|
@ -75,8 +74,8 @@
|
|||
}
|
||||
|
||||
@theme inline {
|
||||
--font-sans: var(--font-geist-sans);
|
||||
--font-mono: var(--font-geist-mono);
|
||||
--font-sans: var(--font-inter);
|
||||
--font-serif: var(--font-playfair);
|
||||
--color-background: var(--background);
|
||||
--color-foreground: var(--foreground);
|
||||
--color-card: var(--card);
|
||||
|
|
|
|||
Loading…
Reference in New Issue