Remove quotes from generic font-family names

This commit is contained in:
jholdstock 2020-06-18 09:30:46 +01:00 committed by David Hill
parent 892e6c5716
commit 705ea51fc1

View File

@ -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;
}