From 25caa3f66f6c086756a0cc88b52b46408d2603ed Mon Sep 17 00:00:00 2001 From: aria Date: Sun, 1 Jun 2025 16:46:51 +1000 Subject: [PATCH] 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?? --- style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index f77d7bf..2dbf362 100644 --- a/style.css +++ b/style.css @@ -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;