From 705ea51fc19b0bb5150ee97df7f22d48f9362a17 Mon Sep 17 00:00:00 2001 From: jholdstock Date: Thu, 18 Jun 2020 09:30:46 +0100 Subject: [PATCH] Remove quotes from generic font-family names --- webapi/public/css/fonts.css | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/webapi/public/css/fonts.css b/webapi/public/css/fonts.css index 8a28ff9..38a2869 100644 --- a/webapi/public/css/fonts.css +++ b/webapi/public/css/fonts.css @@ -53,11 +53,9 @@ } html, body { - /* use !important to prevent issues with browser extensions that change fonts */ - font-family: "vspd", "Verdana", "sans-serif" !important; + font-family: "vspd", "Verdana", sans-serif; } pre, code, .code { - /* use !important to prevent issues with browser extensions that change fonts */ - font-family: "vspd-code", "Courier New", "monospace" !important; + font-family: "vspd-code", "Courier New", monospace; }