1
0
Fork 0
forked from ari/ari-express

Default to local fonts and specify font order

You're not currently using any of the nerd font features but I *think*
if you do then hte system will fall back to the nerd font when needed
with this css change still??
This commit is contained in:
aria 2025-06-01 16:46:51 +10:00
parent 14ba3f7814
commit 25caa3f66f
Signed by: aria
SSH key fingerprint: SHA256:WqtcVnDMrv1lnUlNah5k31iywFUI/DV+5yHzCTO4Vds

View file

@ -15,7 +15,11 @@
}
@font-face {
font-family: 'ShureTechMono Nerd Font';
src: url(/assets/ShureTechMonoNerdFont-Regular.ttf);
src:
local("Share Tech Mono"),
local("ShureTechMono Nerd Font"),
url(/assets/ShareTechMono-Regular.ttf),
url(/assets/ShureTechMonoNerdFont-Regular.ttf);
}
body {
font-family: 'ShureTechMono Nerd Font', monospace;