Minor formatting tidy.

This commit is contained in:
Jayden Seric 2017-08-21 15:16:19 +10:00
parent 449b64b17f
commit 530e12cbc9

View File

@ -6,8 +6,7 @@ const Page = ({ title, children }) =>
<title>
{title}
</title>
<style>
{`
<style>{`
html {
font-family: sans-serif;
color: white;
@ -16,8 +15,7 @@ const Page = ({ title, children }) =>
body {
margin: 2em;
}
`}
</style>
`}</style>
</Head>
{children}
</div>