From 7adbccf7db1078a9a48e0eabc5c8f53725816fcc Mon Sep 17 00:00:00 2001 From: Shriram Khandbahale <99604944+ShriramKhandbahale@users.noreply.github.com> Date: Wed, 25 Jan 2023 22:30:49 +0530 Subject: [PATCH] add backup font-family "sans-serif" (#3943) ShriramKhandbahale In some cases when the styles are not loaded yet, the fonts are rolled back to the default 'serif' family which looks very ugly --- frontend/src/styles/core.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/styles/core.scss b/frontend/src/styles/core.scss index a48def725..7fa1b3460 100644 --- a/frontend/src/styles/core.scss +++ b/frontend/src/styles/core.scss @@ -1,6 +1,6 @@ :root { --roundness: 0.5rem; - --font: "Roboto Mono", "Vazirmatn"; + --font: "Roboto Mono", "Vazirmatn", sans-serif; // scroll-behavior: smooth; scroll-padding-top: 2rem; font-weight: 400;