diff options
| author | Wes Bos <wesbos@gmail.com> | 2017-10-27 10:10:49 -0400 |
|---|---|---|
| committer | Wes Bos <wesbos@gmail.com> | 2017-10-27 10:10:49 -0400 |
| commit | acdfa2840f867e686471a8e9ac3f29353fab7dd1 (patch) | |
| tree | 1a069ce11e145d9b286084221951272511debbdf /components/Meta.js | |
| parent | 6f44adb59d3542eb21e55e0aae789b1fcc7cf8f1 (diff) | |
hi
Diffstat (limited to 'components/Meta.js')
| -rw-r--r-- | components/Meta.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/components/Meta.js b/components/Meta.js index 2655a21..d7a2e17 100644 --- a/components/Meta.js +++ b/components/Meta.js @@ -1,13 +1,21 @@ import React from 'react'; import Head from 'next/head'; +import { injectGlobal } from 'styled-components'; const Meta = () => ( <div> <Head> <meta name="viewport" content="width=device-width, initial-scale=1" /> + {injectGlobal` + html { + background: white; + } + `} <meta charSet="utf-8" /> <link rel="shortcut icon" href="https://wesbos.com/wp-content/themes/wb2014/i/crown-yellow-small.png" /> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" /> + <link rel="stylesheet" type="text/css" href="/static/nprogress.css" /> + <title>Sick Fits</title> </Head> </div> |
