remove external fonts

This commit is contained in:
Henry Dollman
2024-09-02 12:12:52 -04:00
parent 05f52ad15a
commit 54e0240dd8
4 changed files with 15 additions and 7 deletions

View File

@@ -5,12 +5,6 @@
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Beszel</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="app"></div>

Binary file not shown.

View File

@@ -57,6 +57,20 @@
}
}
/* Fonts */
@supports (font-variation-settings: normal) {
:root {
font-family: Inter, InterVariable, sans-serif;
}
}
@font-face {
font-family: InterVariable;
font-style: normal;
font-weight: 100 900;
font-display: swap;
src: url('/static/InterVariable.woff2?v=4.0') format('woff2');
}
@layer base {
* {
@apply border-border;

View File

@@ -17,7 +17,7 @@ module.exports = {
},
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
sans: 'Inter, sans-serif',
// body: ['Inter', 'sans-serif'],
// display: ['Inter', 'sans-serif'],
},