You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* add InterVariable font
* Delete fonts.css
* set font family
* Revert "Delete fonts.css"
This reverts commit afd3156.
* update fonts.css
* disable OpenType alternates that make Cs and As weird
* remove unused font file
--font-geist-mono:'Geist Mono','Menlo','Monaco','Lucida Console','Liberation Mono','DejaVu Sans Mono','Bitstream Vera Sans Mono','Courier New', monospace;
20
13
}
21
14
15
+
/* Apply fonts to body and common elements with explicit OpenType features */
22
16
body {
23
-
font-family:'inter-variable', sans-serif;
17
+
font-family:var(--font-inter);
18
+
font-feature-settings: normal; /* Ensure default character variants */
19
+
font-variant-numeric: normal;
20
+
font-variant-ligatures: normal;
21
+
}
22
+
23
+
/* Code elements */
24
+
code,
25
+
pre,
26
+
.code,
27
+
.hljs {
28
+
font-family:var(--font-geist-mono);
29
+
}
30
+
31
+
/* Ensure proper font weight and style support */
32
+
.font-inter {
33
+
font-family:var(--font-inter);
34
+
}
35
+
36
+
.font-mono {
37
+
font-family:var(--font-geist-mono);
38
+
}
39
+
40
+
/* Fix for true italics instead of synthetic slanted text */
0 commit comments