fix: resolve Tailwind CSS build error and remove conflicting dependency
Define `--font-sans` directly and remove `"src": "latest"` from `package.json`. Co-authored-by: Jeff Emmett <46964190+Jeff-Emmett@users.noreply.github.com>
This commit is contained in:
parent
db4d4e7ffc
commit
bdaddd99ab
|
|
@ -2,7 +2,8 @@
|
|||
|
||||
@theme inline {
|
||||
--font-mono: "JetBrains Mono", "Fira Code", "Courier New", monospace;
|
||||
--font-sans: var(--font-mono); /* Force mono everywhere for the nerdy vibe */
|
||||
/* Explicitly defining font-sans instead of using var() to avoid potential resolution issues in Tailwind v4 */
|
||||
--font-sans: "JetBrains Mono", "Fira Code", "Courier New", monospace;
|
||||
|
||||
--color-background: #0a0a0a;
|
||||
--color-foreground: #00ff00; /* Terminal Green */
|
||||
|
|
|
|||
Loading…
Reference in New Issue