Skip to content

Commit f6b7e8d

Browse files
committed
Change font stack
1 parent f0f858f commit f6b7e8d

File tree

2 files changed

+23
-8
lines changed

2 files changed

+23
-8
lines changed

components/dashboard/src/tailwind.output.css

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ ul {
365365
*/
366366

367367
html {
368-
font-family: Inter, Helvetica, Arial, sans-serif; /* 1 */
368+
font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji; /* 1 */
369369
line-height: 1.5; /* 2 */
370370
}
371371

@@ -12671,7 +12671,7 @@ input[type=text]::placeholder {
1267112671
}
1267212672

1267312673
.font-sans {
12674-
font-family: Inter, Helvetica, Arial, sans-serif !important;
12674+
font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji !important;
1267512675
}
1267612676

1267712677
.font-thin {
@@ -46975,7 +46975,7 @@ input[type=text]::placeholder {
4697546975
}
4697646976

4697746977
.sm\:font-sans {
46978-
font-family: Inter, Helvetica, Arial, sans-serif !important;
46978+
font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji !important;
4697946979
}
4698046980

4698146981
.sm\:font-thin {
@@ -80680,7 +80680,7 @@ input[type=text]::placeholder {
8068080680
}
8068180681

8068280682
.md\:font-sans {
80683-
font-family: Inter, Helvetica, Arial, sans-serif !important;
80683+
font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji !important;
8068480684
}
8068580685

8068680686
.md\:font-thin {
@@ -114385,7 +114385,7 @@ input[type=text]::placeholder {
114385114385
}
114386114386

114387114387
.lg\:font-sans {
114388-
font-family: Inter, Helvetica, Arial, sans-serif !important;
114388+
font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji !important;
114389114389
}
114390114390

114391114391
.lg\:font-thin {
@@ -148090,7 +148090,7 @@ input[type=text]::placeholder {
148090148090
}
148091148091

148092148092
.xl\:font-sans {
148093-
font-family: Inter, Helvetica, Arial, sans-serif !important;
148093+
font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji !important;
148094148094
}
148095148095

148096148096
.xl\:font-thin {
@@ -181795,7 +181795,7 @@ input[type=text]::placeholder {
181795181795
}
181796181796

181797181797
.\32xl\:font-sans {
181798-
font-family: Inter, Helvetica, Arial, sans-serif !important;
181798+
font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji !important;
181799181799
}
181800181800

181801181801
.\32xl\:font-thin {

components/dashboard/tailwind.config.js

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,22 @@ module.exports = {
3333
},
3434
},
3535
fontFamily: {
36-
'sans': ['Inter', 'Helvetica', 'Arial', 'sans-serif'],
36+
sans: [
37+
'Inter',
38+
'system-ui',
39+
'-apple-system',
40+
'BlinkMacSystemFont',
41+
'Segoe UI',
42+
'Roboto',
43+
'Helvetica Neue',
44+
'Arial',
45+
'Noto Sans',
46+
'sans-serif',
47+
'Apple Color Emoji',
48+
'Segoe UI Emoji',
49+
'Segoe UI Symbol',
50+
'Noto Color Emoji',
51+
],
3752
},
3853
underlineThickness: {
3954
'thin': '2px',

0 commit comments

Comments
 (0)