Optimize font rendering
All checks were successful
Build / build (push) Successful in 5m37s

This commit is contained in:
Emil Miler 2024-02-09 09:52:59 +01:00
parent d5cc96a647
commit fdc5b3e911
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,5 @@
@import "fonts";
$col-white: #fff;
$col-black: #2e3440;
@ -6,6 +8,8 @@ body {
margin: 0;
background-color: $col-black;
color: $col-white;
font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
text-rendering: geometricPrecision;
}
table {

View File

@ -1,4 +1,4 @@
@import "fonts";
@import "fonts";
$width-mobile: 900px;
@ -12,6 +12,7 @@ body {
background-color: #2e3440;
color: #fff;
font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
text-rendering: geometricPrecision;
@media (prefers-color-scheme: light) {
background-color: #fff;