From f13bcce73a1d688d15bed1e2e458cc21be7f4d4b Mon Sep 17 00:00:00 2001 From: Anirudh Oppiliappan Date: Wed, 30 Apr 2025 15:01:12 +0000 Subject: [PATCH] input.css: set weight to 600 for bold Prevents the ugly browser enforced bold that we had all this while. --- input.css | 10 +++++++++- 1 file(s) changed, 9 insertion(s)(+), 1 deletion(s)(-) diff --git a/input.css b/input.css --- a/input.css +++ b/input.css @@ -13,8 +13,16 @@ @font-face { font-family: "InterVariable"; src: url("/static/fonts/InterVariable-Italic.woff2") format("woff2"); - font-weight: normal; + font-weight: 400; font-style: italic; + font-display: swap; + } + + @font-face { + font-family: "InterVariable"; + src: url("/static/fonts/InterVariable.woff2") format("woff2"); + font-weight: 600; + font-style: normal; font-display: swap; } -- tangled.sh