main.css: allow fallback from ui-serif to system-ui to the usual list

I have a small suspicion Android might not handle ui-serif and this is the place I am going to test it. Anyway modern devices are going to use ui-serif and if it fails, system-ui might also fail, and then it's back to my expected font set.
This commit is contained in:
Aminda Suomalainen 2024-05-31 20:51:49 +03:00
parent 3db1fd4d94
commit 45c131d300
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q
1 changed files with 3 additions and 2 deletions

View File

@ -5,8 +5,9 @@
@charset "utf-8";
// Our variables
$base-font-family: ui-serif, "Liberation Serif", Tinos, "Times New Roman", serif;
//$base-font-family: ui-sans-serif, "Liberation Sans", "Arimo", "Arial", sans-serif;
$base-font-family: ui-serif, system-ui, "Liberation Serif", Tinos,
"Times New Roman", serif;
//$base-font-family: ui-sans-serif, system-ui, "Liberation Sans", "Arimo", "Arial", sans-serif;
$monospace-font-family: ui-monospace, "Liberation Mono", Cousine, "Courier New",
monospace;