Spaces:
Sleeping
Sleeping
Tristan Yu commited on
Commit ·
effd1cd
1
Parent(s): ac26d1b
Use comprehensive font fallback stack for better cross-platform compatibility
Browse files- src/index.css +4 -4
src/index.css
CHANGED
|
@@ -4,11 +4,11 @@
|
|
| 4 |
|
| 5 |
@layer base {
|
| 6 |
html {
|
| 7 |
-
font-family: 'Inter', system
|
| 8 |
}
|
| 9 |
|
| 10 |
body {
|
| 11 |
-
font-family: 'Inter', system
|
| 12 |
}
|
| 13 |
}
|
| 14 |
|
|
@@ -42,12 +42,12 @@
|
|
| 42 |
}
|
| 43 |
|
| 44 |
.font-smiley {
|
| 45 |
-
font-family: 'Inter', 'Segoe UI', 'Roboto',
|
| 46 |
font-weight: 400; /* Regular for submissions and briefs */
|
| 47 |
}
|
| 48 |
|
| 49 |
.font-source-text {
|
| 50 |
-
font-family: 'Inter', 'Segoe UI', 'Roboto',
|
| 51 |
font-weight: 500; /* Medium for source texts */
|
| 52 |
}
|
| 53 |
}
|
|
|
|
| 4 |
|
| 5 |
@layer base {
|
| 6 |
html {
|
| 7 |
+
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
|
| 8 |
}
|
| 9 |
|
| 10 |
body {
|
| 11 |
+
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
|
| 12 |
}
|
| 13 |
}
|
| 14 |
|
|
|
|
| 42 |
}
|
| 43 |
|
| 44 |
.font-smiley {
|
| 45 |
+
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
|
| 46 |
font-weight: 400; /* Regular for submissions and briefs */
|
| 47 |
}
|
| 48 |
|
| 49 |
.font-source-text {
|
| 50 |
+
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
|
| 51 |
font-weight: 500; /* Medium for source texts */
|
| 52 |
}
|
| 53 |
}
|