Self-host the Roboto Condensed font

Instead of linking to Google Fonts.
This commit is contained in:
Oliver Davies 2024-12-07 20:24:53 +00:00
parent 6144fae6d8
commit 8541c0a3e9
5 changed files with 12 additions and 2 deletions

11
assets/css/tailwind.css Normal file
View file

@ -0,0 +1,11 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
@font-face {
font-family: Roboto Condensed;
font-weight: 300 400 500 700;
src: url('../assets/fonts/RobotoCondensed-VariableFont_wght.ttf') format('truetype');
}
}