From 73cabeb90439357a18c61f3265640c74510cd896 Mon Sep 17 00:00:00 2001 From: Camelid <37223377+camelid@users.noreply.github.com> Date: Sun, 6 Sep 2020 10:34:11 -0700 Subject: [PATCH] Remove local version from `@font-face` It's unlikely that the bundled version wouldn't load, and it's especially unlikely that the page would load but the bundled version would not. Also, if it doesn't load, it should fall back to another monospace font, which is fine. --- src/theme/fonts/fonts.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/theme/fonts/fonts.css b/src/theme/fonts/fonts.css index 8535e403..858efa59 100644 --- a/src/theme/fonts/fonts.css +++ b/src/theme/fonts/fonts.css @@ -96,6 +96,5 @@ font-family: 'Source Code Pro'; font-style: normal; font-weight: 500; - src: url('source-code-pro-v11-all-charsets-500.woff2') format('woff2'), - local('Source Code Pro Medium'), local('SourceCodePro-Medium'); + src: url('source-code-pro-v11-all-charsets-500.woff2') format('woff2'); }