rsnext/examples/with-next-auth/styles.css
Nico Domino fe529c49bf
Add 'with-next-auth' example (#14530)
I accidentally deleted the repo the original PR was based upon haha. 

Anyway, the code was still on my computer so here's a new PR with the same content. 

I addressed the latest comments from @lfades in the old PR (https://github.com/vercel/next.js/pull/14180)

I also updated `next-auth` to `2.1.0` and updated the `<Provider />` component in `_app.js` that needed updating since the latest release.

Let me know if I missed anything else, otherwise I think this should be good to go 👍
2020-06-24 22:24:02 +00:00

29 lines
431 B
CSS

body {
font-family: 'SF Pro Text', 'SF Pro Icons', 'Helvetica Neue', 'Helvetica',
'Arial', sans-serif;
line-height: 1.4rem;
padding: 0 1rem 1rem 1rem;
max-width: 680px;
margin: 0 auto;
color: #333;
}
h1 {
margin: 0 0 2rem 0;
font-size: 2.5rem;
line-height: 3rem;
font-weight: 300;
}
h4 {
margin-bottom: 0.5rem;
text-transform: uppercase;
}
a {
font-weight: 500;
}
hr {
border: 1px solid #ddd;
}