Switch to tailwindcss, start login page

This commit is contained in:
2020-07-03 19:13:07 +02:00
parent 70bb22c3dd
commit b2f6a385c6
13 changed files with 358 additions and 469 deletions
+3 -39
View File
@@ -1,41 +1,5 @@
<template>
<v-app dark>
<Navbar />
<v-main>
<v-container fill-height>
<v-row no-gutters justify="center">
<nuxt />
</v-row>
<v-snackbar v-model="toast" :color="color">{{
msg
}}</v-snackbar>
</v-container>
</v-main>
</v-app>
<div class="h-screen bg-gray-900 font-sans text-gray-100">
<nuxt />
</div>
</template>
<script>
import Navbar from '@/components/Navbar'
export default {
components: { Navbar },
data: () => ({
toast: false,
color: '',
msg: '',
}),
mounted() {
this.$root.$on('toast', (msg, color) => {
this.msg = msg
this.color = color || ''
this.toast = true
})
},
}
</script>
<style>
html {
overflow-y: auto;
}
</style>