From b2ee9021e8add564289e4ac0c2188d7f85d77be6 Mon Sep 17 00:00:00 2001 From: Tongyu Lu <47733980+StevenLu2004@users.noreply.github.com> Date: Tue, 23 Mar 2021 15:36:30 +0800 Subject: [PATCH 1/2] Fix default font on Windows --- Theme (Windows).css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Theme (Windows).css b/Theme (Windows).css index c9eb3f6..cdac5a0 100644 --- a/Theme (Windows).css +++ b/Theme (Windows).css @@ -1,7 +1,9 @@ * { - font-family: "Roboto Bold"; + /*font-family: "Roboto Bold"*/ + font-family: Roboto; + font-weight: bold; } .locationbar { padding: 1ex; -} \ No newline at end of file +} From f823b70acbc4c09a706d9b4e3b7188d0996d1d04 Mon Sep 17 00:00:00 2001 From: Tongyu Lu <47733980+StevenLu2004@users.noreply.github.com> Date: Tue, 23 Mar 2021 16:02:42 +0800 Subject: [PATCH 2/2] Add fallback fonts --- Theme (Windows).css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Theme (Windows).css b/Theme (Windows).css index cdac5a0..ff2b611 100644 --- a/Theme (Windows).css +++ b/Theme (Windows).css @@ -1,6 +1,6 @@ * { /*font-family: "Roboto Bold"*/ - font-family: Roboto; + font-family: "Roboto Bold", Roboto, Arial; font-weight: bold; }