1
0
Fork 0
forked from ari/ari-express

Compare commits

...

2 commits

Author SHA1 Message Date
25caa3f66f
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??
2025-06-01 16:46:51 +10:00
14ba3f7814
Add a less nerdy version of the font 2025-06-01 16:44:14 +10:00
2 changed files with 5 additions and 1 deletions

Binary file not shown.

View file

@ -15,7 +15,11 @@
} }
@font-face { @font-face {
font-family: 'ShureTechMono Nerd Font'; 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 { body {
font-family: 'ShureTechMono Nerd Font', monospace; font-family: 'ShureTechMono Nerd Font', monospace;