feat: set up global styles for font

This commit is contained in:
Jean-Philippe Sirois
2019-07-29 14:12:08 -04:00
parent cc9dc391a9
commit 17728684ea
3 changed files with 16 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { createGlobalStyle } from "styled-components"
export const GlobalStyles = createGlobalStyle`
html {
font-family: Oxygen;
}
body {
font-size: 18px;
line-height: 25px;
}
`