From 6b2cc47729a71744fb1d143c35190e13ce7b70f6 Mon Sep 17 00:00:00 2001 From: fiskgrodan Date: Wed, 2 Jan 2019 14:30:18 +0100 Subject: [PATCH] Update global.css Added `sans-serif` fallback to `Roboto` on `p, ol, ul`-elements to avoid the initial flashing of `Times New Roman` on loads and reloads. --- site/static/global.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/static/global.css b/site/static/global.css index a50a90e3fd..c7c674ee84 100644 --- a/site/static/global.css +++ b/site/static/global.css @@ -233,7 +233,7 @@ h1 { font-size: var(--h1) } p, ol, ul { line-height: 1.5; margin: 0 0 1em 0; - font-family: Roboto; + font-family: Roboto, sans-serif; -webkit-font-smoothing: antialiased; /* font-family: var(--font-system); */ }