Skip to content
This repository has been archived by the owner on Jan 16, 2022. It is now read-only.

Commit

Permalink
fix: add missing global font-family
Browse files Browse the repository at this point in the history
  • Loading branch information
griffithtp committed Jul 7, 2019
1 parent 0e14146 commit c57f9dd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/utils/styles/global.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,17 @@ 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 {
height: 100%;
}
body {
font-family: ${fontFamily};
font-size: ${fontSize.base};
color: ${colors.eclipse};
}
Expand Down

0 comments on commit c57f9dd

Please sign in to comment.