Easy way to make the font universally bold

Uncommenting "font weight: bold;" on your respective platform will make the font universally bold.
This commit is contained in:
Vozer
2022-07-06 22:39:59 -05:00
committed by GitHub
parent bc9eed4a04
commit e950314b89
+5 -4
View File
@@ -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;
}