From f13bcce73a1d688d15bed1e2e458cc21be7f4d4b Mon Sep 17 00:00:00 2001 From: Anirudh Oppiliappan Date: Wed, 30 Apr 2025 18:01:12 +0300 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 changed, 9 insertions(+), 1 deletion(-) diff --git a/input.css b/input.css index b45afd97..8ffc7ff8 100644 --- a/input.css +++ b/input.css @@ -13,11 +13,19 @@ @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; + } + @font-face { font-family: "IBMPlexMono"; src: url("/static/fonts/IBMPlexMono-Regular.woff2") format("woff2"); -- 2.51.2