Skip to content

Commit 04bfcf6

Browse files
committed
🤖 Fix: Remove quotes from font CSS variables
CSS custom properties don't need quotes around font family names. The quotes are only needed in direct font-family declarations, not in variable definitions.
1 parent 2915e39 commit 04bfcf6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/styles/globals.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@
135135
--color-token-cached: hsl(var(--token-cached));
136136

137137
/* Font Variables */
138-
--font-primary: "IBM Plex Sans", sans-serif;
139-
--font-monospace: "JetBrains Mono", Consolas, Monaco, monospace;
138+
--font-primary: IBM Plex Sans, sans-serif;
139+
--font-monospace: JetBrains Mono, Consolas, Monaco, monospace;
140140
}
141141

142142
* {

0 commit comments

Comments
 (0)