Skip to content

Commit a143c1c

Browse files
committed
feat(app): added roboto font
1 parent 5843924 commit a143c1c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

shared/components/layout/index.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ const Layout: FunctionComponent<Props> = ({meta, children}) => {
2020
</main>
2121
</div>
2222
<style jsx global>{`
23+
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
24+
html, body { height:100%; width:100%; font-family: 'Roboto', sans-serif; }
2325
body { margin: 0; padding: 0}
26+
.layout { padding: 2rem 2.5rem; }
2427
`}</style>
2528
</Fragment>
2629
);

0 commit comments

Comments
 (0)