cleanup footer on login page

This commit is contained in:
2020-03-26 18:10:12 +00:00
parent 18d93fa1ba
commit 094078b0bf
3 changed files with 33 additions and 9 deletions

View File

@@ -195,8 +195,31 @@
</transition>
</v-container>
</v-content>
<v-footer color="primary" padless v-if="!isAuthenticated">
<div>
<v-footer
v-if="!isAuthenticated"
absolute
class="font-weight-medium body-2"
>
<v-col class="primary py-4 text-center white--text" cols="12">
<a
href="https://ayanova.com"
target="_blank"
style="text-decoration:none"
class="primary py-md-4 px-md-12 text-center white--text"
>
AyaNova {{ version }} {{ copyright }}
</a>
</v-col>
</v-footer>
</v-app>
</template>
<script>
/* Xeslint-disable */
/*
<v-footer color="primary" v-if="!isAuthenticated">
<div class="text-center overline">
<a
href="https://ayanova.com"
target="_blank"
@@ -207,11 +230,7 @@
</a>
</div>
</v-footer>
</v-app>
</template>
<script>
/* Xeslint-disable */
*/
import ayaNovaVersion from "./api/ayanova-version";
import gzconfirm from "./components/gzconfirm";
import gznotify from "./components/gznotify";

View File

@@ -65,7 +65,7 @@ export default new Vuex.Store({
state.locale.timeZoneOverride = "America/New_York";
state.locale.currencyName = "USD";
state.locale.hour12 = true;
state.globalSettings={};
state.globalSettings = {};
},
addNavItem(state, data) {
state.navItems.push(data);