From 48a9ba3287b92772d88d4d80afdce90382c7efb8 Mon Sep 17 00:00:00 2001 From: futile Date: Mon, 22 Dec 2025 02:53:45 +0000 Subject: [PATCH] fix font weight --- style.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index 8199eb6..ff98b2a 100644 --- a/style.css +++ b/style.css @@ -6,8 +6,10 @@ } /* because chromium renders this font like dogshit at weight 600 */ -@supports not (-moz-appearance: none) { - h1 { +h1 { + font-weight: 600; + + @supports not (-moz-appearance: none) { font-weight: 400; } }