Use tailwind css

This commit is contained in:
Ben Ramey
2022-08-27 14:23:30 -05:00
parent 696ca6a393
commit c45d304fdd
12 changed files with 4603 additions and 228 deletions

View File

@@ -5,7 +5,7 @@ function Layout({ user, loading = false, children }) {
return (
<>
<Head>
<title>Next.js with Auth0</title>
<title>forget me not</title>
</Head>
<Header user={user} loading={loading} />
@@ -15,18 +15,8 @@ function Layout({ user, loading = false, children }) {
</main>
<style jsx>{`
.container {
max-width: 42rem;
margin: 1.5rem auto;
}
`}</style>
<style jsx global>{`
body {
margin: 0;
color: #333;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
`}</style>
</>
);