Skip to content

Commit c27a17f

Browse files
danielzgtgLegNeato
authored andcommitted
Fix monospace font fallback
`monospace` is more correct that `sans-serif` for "GeistMono". It renders better for mobile readers who adblock all fonts. This doesn't affect normal readers.
1 parent 52a11f2 commit c27a17f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tailwind.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module.exports = {
2424
fontFamily: {
2525
header: ['"Geist"', "sans-serif"],
2626
text: ['"Geist"', "sans-serif"],
27-
mono: ['"GeistMono"', "sans-serif"],
27+
mono: ['"GeistMono"', "monospace"],
2828
},
2929
borderWidth: {
3030
thin: "max(1px, 0.0625rem)",

0 commit comments

Comments
 (0)