mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
Next.js 13.4 [is out](https://nextjs.org/blog/next-13-4). For discussing project-related issues, please use https://github.com/nextauthjs/next-auth/discussions/8487 The new version of NextAuth.js is based on `@auth/core`. If you want to test it out, you can do so already, installing `next-auth@experimental`: - **Documentation**: https://authjs.dev/reference/nextjs - **Migration guide**: https://authjs.dev/guides/upgrade-to-v5 BREAKING CHANGE: Follow the [migration guide](https://authjs.dev/guides/upgrade-to-v5)
33 lines
587 B
CSS
33 lines
587 B
CSS
body {
|
|
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
|
|
"Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
|
|
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
padding: 0 1rem 1rem 1rem;
|
|
max-width: 680px;
|
|
margin: 0 auto;
|
|
background: #fff;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
li,
|
|
p {
|
|
line-height: 1.5rem;
|
|
}
|
|
|
|
a {
|
|
font-weight: 500;
|
|
}
|
|
|
|
hr {
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
iframe {
|
|
background: #ccc;
|
|
border: 1px solid #ccc;
|
|
height: 10rem;
|
|
width: 100%;
|
|
border-radius: 0.5rem;
|
|
filter: invert(1);
|
|
}
|