mirror of
https://github.com/MichaByte/OnBoard-Live.git
synced 2026-01-29 13:32:12 -05:00
Add Inter as default font
This commit is contained in:
parent
77a2bd103e
commit
742a6b24f5
2 changed files with 11 additions and 2 deletions
|
|
@ -73,7 +73,8 @@
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
<link rel="preconnect" href="https://rsms.me/">
|
||||||
|
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
|
||||||
<div
|
<div
|
||||||
style="width: 100vw; height: 100vh; overflow: hidden; position: absolute; top: 0; left: 0"
|
style="width: 100vw; height: 100vh; overflow: hidden; position: absolute; top: 0; left: 0"
|
||||||
>
|
>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,11 @@
|
||||||
@tailwind base;
|
@tailwind base;
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
|
:root {
|
||||||
|
font-family: Inter, sans-serif;
|
||||||
|
font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
|
||||||
|
}
|
||||||
|
@supports (font-variation-settings: normal) {
|
||||||
|
:root { font-family: InterVariable, sans-serif; }
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue