Workaround for nuxtjs layout bug

This commit is contained in:
2020-04-26 12:46:15 +02:00
parent 7e1425c25e
commit 3d2f950433
5 changed files with 135 additions and 149 deletions
+1 -3
View File
@@ -4,9 +4,7 @@
<v-content>
<v-container fill-height>
<v-row no-gutters justify="center">
<v-col cols="12" sm="8" md="6">
<nuxt />
</v-col>
<nuxt />
</v-row>
</v-container>
</v-content>
-28
View File
@@ -1,28 +0,0 @@
<template>
<v-app>
<Navbar />
<v-content>
<v-container fill-height>
<v-row no-gutters justify="center">
<v-col cols="12">
<nuxt />
</v-col>
</v-row>
</v-container>
</v-content>
</v-app>
</template>
<script>
import Navbar from '@/components/Navbar'
export default {
components: { Navbar },
}
</script>
<style>
html {
overflow-y: auto;
}
</style>