From e950314b89970a7caaaae267eb67b0531e5390fc Mon Sep 17 00:00:00 2001 From: Vozer <76500838+SlippingGitty@users.noreply.github.com> Date: Wed, 6 Jul 2022 22:39:59 -0500 Subject: [PATCH] Easy way to make the font universally bold Uncommenting "font weight: bold;" on your respective platform will make the font universally bold. --- src/_modules.scss | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/_modules.scss b/src/_modules.scss index fe91239..220ea1a 100644 --- a/src/_modules.scss +++ b/src/_modules.scss @@ -189,14 +189,15 @@ display:none; .platform-osx * { font-family: -apple-system, BlinkMacSystemFont, sans-serif !important; text-rendering: optimizeLegibility !important; + //font-weight: bold; text-transform: none; } - .platform-linux *, .platform-win *{ -font-family: "SF Pro Display", sans-serif !important; -text-rendering: optimizeLegibility !important; -text-transform: none; + font-family: "SF Pro Display", sans-serif !important; + text-rendering: optimizeLegibility !important; + //font-weight: bold; + text-transform: none; }