27 lines
365 B
Vue
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> |