mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* chore: dev -> dev/nextjs * chore: move to /examples * chore: move to playgrounds, add dev/sveltekit * Update sync.yml * chore: dev scripts
33 lines
514 B
Vue
33 lines
514 B
Vue
<template>
|
|
<div>
|
|
<Header />
|
|
<NuxtPage />
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans,
|
|
sans-serif, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif,
|
|
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
padding: 0 1rem 1rem 1rem;
|
|
max-width: 680px;
|
|
margin: 0 auto;
|
|
background: #fff;
|
|
color: #333;
|
|
}
|
|
|
|
li,
|
|
p {
|
|
line-height: 1.5rem;
|
|
}
|
|
|
|
a {
|
|
font-weight: 500;
|
|
}
|
|
|
|
hr {
|
|
border: 1px solid #ddd;
|
|
}
|
|
</style>
|