login logo fully sorted shows in footer if user has set a logo else shows at top larger
This commit is contained in:
@@ -102,7 +102,6 @@
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-footer color="primary" padless absolute>
|
||||
|
||||
<div style="text-align: center;" class="mx-auto pa-4">
|
||||
<a
|
||||
href="https://ayanova.com"
|
||||
@@ -110,7 +109,7 @@
|
||||
style="text-decoration:none"
|
||||
class="primary white--text text-caption"
|
||||
>
|
||||
<div style="width: 100%;" class="mx-auto" v-if="true">
|
||||
<div style="width: 100%;" class="mx-auto" v-if="showFooterLogo">
|
||||
<v-img
|
||||
style="margin: 0 auto;"
|
||||
:src="require('../assets/logo.svg')"
|
||||
@@ -318,6 +317,16 @@ export default {
|
||||
},
|
||||
version() {
|
||||
return ayaNovaVersion.version;
|
||||
},
|
||||
showFooterLogo() {
|
||||
if (this.hasSmallLogo && this.$vuetify.breakpoint.smAndDown) {
|
||||
return true;
|
||||
}
|
||||
if (this.hasMediumLogo && this.$vuetify.breakpoint.mdAndUp) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
Reference in New Issue
Block a user