From 45c131d300356f15a913f204e1380a18b9121513 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Fri, 31 May 2024 20:51:49 +0300 Subject: [PATCH] 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. --- assets/main.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/assets/main.scss b/assets/main.scss index fd360c1..501744b 100644 --- a/assets/main.scss +++ b/assets/main.scss @@ -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;