Update layout

This commit is contained in:
2022-10-30 11:28:50 +01:00
parent 91a24e7db2
commit a79200383a
8 changed files with 51 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
<template>
<v-app>
<v-app :style="{ background: $vuetify.theme.themes[theme].background }">
<v-main>
<v-container fill-height>
<v-card max-width="500px" class="mx-auto">
@@ -35,6 +35,9 @@ export default {
}
},
computed: {
theme () {
return (this.$vuetify.theme.dark) ? 'dark' : 'light'
},
userEmail () {
return this.$auth.currentUser.email
}