Base nuxt layout
This commit is contained in:
18
app.vue
Normal file
18
app.vue
Normal file
@@ -0,0 +1,18 @@
|
||||
<template>
|
||||
<div class="wrapper">
|
||||
<Navbar />
|
||||
<main class="p-4">
|
||||
<NuxtPage />
|
||||
</main>
|
||||
<Footer />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.wrapper {
|
||||
min-height: 100dvh;
|
||||
min-height: 100vh;
|
||||
display: grid;
|
||||
grid-template-rows: auto 1fr auto;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user