From e512280efdf9f71ab7aed705542501dd9e997cbc Mon Sep 17 00:00:00 2001 From: sageTheDM Date: Tue, 8 Oct 2024 07:41:55 +0200 Subject: [PATCH] Fonts are now equally bold --- app/styles/global.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/styles/global.css b/app/styles/global.css index e31066b..94ed660 100644 --- a/app/styles/global.css +++ b/app/styles/global.css @@ -69,4 +69,11 @@ select{ h1, h2, h3, h4, p{ color: var(--text-color); + font-family: var(--font-family); + font-weight: 500; +} + +p{ + font-weight: 400; + font-size: var(--font-size) }