Use tailwind css
This commit is contained in:
@@ -39,41 +39,6 @@ function Header({ user, loading }) {
|
||||
))}
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<style jsx>{`
|
||||
header {
|
||||
padding: 0.2rem;
|
||||
color: #fff;
|
||||
background-color: #333;
|
||||
}
|
||||
nav {
|
||||
max-width: 42rem;
|
||||
margin: 1.5rem auto;
|
||||
}
|
||||
ul {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
li {
|
||||
margin-right: 1rem;
|
||||
}
|
||||
li:nth-child(2) {
|
||||
margin-right: auto;
|
||||
}
|
||||
a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
button {
|
||||
font-size: 1rem;
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
background: none;
|
||||
}
|
||||
`}</style>
|
||||
</header>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
</>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user