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-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
<v-footer color="primary" padless absolute>
|
<v-footer color="primary" padless absolute>
|
||||||
|
|
||||||
<div style="text-align: center;" class="mx-auto pa-4">
|
<div style="text-align: center;" class="mx-auto pa-4">
|
||||||
<a
|
<a
|
||||||
href="https://ayanova.com"
|
href="https://ayanova.com"
|
||||||
@@ -110,7 +109,7 @@
|
|||||||
style="text-decoration:none"
|
style="text-decoration:none"
|
||||||
class="primary white--text text-caption"
|
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
|
<v-img
|
||||||
style="margin: 0 auto;"
|
style="margin: 0 auto;"
|
||||||
:src="require('../assets/logo.svg')"
|
:src="require('../assets/logo.svg')"
|
||||||
@@ -318,6 +317,16 @@ export default {
|
|||||||
},
|
},
|
||||||
version() {
|
version() {
|
||||||
return ayaNovaVersion.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: {
|
methods: {
|
||||||
|
|||||||
Reference in New Issue
Block a user