From c57f9dde35941dcd9e9cae8d63ffb644b61f07d0 Mon Sep 17 00:00:00 2001 From: Griffithtp Date: Sun, 7 Jul 2019 13:33:16 +0100 Subject: [PATCH] fix: add missing global font-family --- src/utils/styles/global.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/utils/styles/global.ts b/src/utils/styles/global.ts index a920d8862..d415ac4ee 100644 --- a/src/utils/styles/global.ts +++ b/src/utils/styles/global.ts @@ -3,6 +3,9 @@ import { fontSize, fontWeight } from './sizes'; import colors from './colors'; import { breakpoints } from './media'; +const fontFamily = `-apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", + Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"`; + export default injectGlobal` html, body { @@ -10,6 +13,7 @@ export default injectGlobal` } body { + font-family: ${fontFamily}; font-size: ${fontSize.base}; color: ${colors.eclipse}; }