unity-calendar/layouts/default.vue
2024-06-07 15:37:41 +10:00

27 lines
365 B
Vue

<style>
main {
max-width: 60rem;
margin: auto;
}
h1 {
margin: auto;
width: max-content;
}
nav {
position: absolute;
bottom: 0;
width: 60rem;
margin: auto;
}
</style>
<template>
<main>
<slot />
</main>
<nav>
<navfoot />
</nav>
</template>