This commit is contained in:
2020-08-17 22:03:23 +00:00
parent 72411fa4a4
commit 646b7ff228
3 changed files with 21 additions and 9 deletions

View File

@@ -8,7 +8,7 @@
Also there is a height bug in vuetify with chrome on mobile (and safari) so using workaround with 100% height set on v-navigation-drawer
https://github.com/vuetifyjs/vuetify/issues/9607
height="100%"
-->
<v-navigation-drawer
v-if="isAuthenticated"
@@ -16,6 +16,7 @@
app
temporary
width="345"
height="100%"
>
<template v-slot:prepend>
<div class="subtitle-2 primary--text pt-2 pl-4">
@@ -243,7 +244,7 @@
</transition>
</v-container>
</v-main>
<v-footer
<!-- <v-footer
v-if="!isAuthenticated"
absolute
class="font-weight-medium body-2"
@@ -258,6 +259,23 @@
AyaNova {{ version }} {{ copyright }}
</a>
</v-col>
</v-footer> -->
<v-footer
v-if="!isAuthenticated"
absolute
class="font-weight-medium body-2"
>
<v-col class="primary text-center white--text" cols="12">
<a
href="https://ayanova.com"
target="_blank"
style="text-decoration:none"
class="primary text-center white--text"
>
AyaNova {{ version }} {{ copyright }}
</a>
</v-col>
</v-footer>
</v-app>
</template>

View File

@@ -1,5 +1,5 @@
export default {
version: "8.0.0-alpha.10",
version: "8.0.0-alpha.10.4",
copyright:
"Copyright © 1999-2020, Ground Zero Tech-Works Inc. All Rights Reserved"
};

View File

@@ -1,9 +1,3 @@
body,
html,
.app {
height: 100%;
}
.multi-line {
white-space: pre-line;
}