fix: Fallback to sans-serif font when chosen font is not loaded

By default, some browsers fall back to a serif font otherwise.
pull/10306/head
Connor Lanigan 2023-09-13 18:05:47 +00:00
parent bf85a8861d
commit 1818f36e88
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ html {
body {
background: var(--bg-body-color);
font-family: 'Inter';
font-family: 'Inter', sans-serif;
color: var(--text-body-color) !important;
}