Skip to content

Commit d99056f

Browse files
fix(core): fixed footer 🐛 (#1760)
1 parent 78ec3a6 commit d99056f

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/modules/_core/components/core.footer.component.vue

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
2-
<v-footer v-if="enabled" class="pa-0 align-end" :style="{ background: config.vuetify.theme.themes[theme].colors.background }" app>
3-
<v-container class="footer pa-6" :style="custom && custom.section ? custom.section : null" v-if="links.length > 0">
2+
<v-footer v-if="enabled" class="footer pa-0 align-end" :style="{ background: config.vuetify.theme.themes[theme].colors.background }" app>
3+
<v-container class="pa-6" :style="custom && custom.section ? custom.section : null" v-if="links.length > 0">
44
<v-row>
55
<v-col
66
v-for="({ items, title }, i) in links.filter((section) => section.items)"
@@ -53,3 +53,9 @@ export default {
5353
},
5454
};
5555
</script>
56+
57+
<style>
58+
.footer {
59+
position: relative !important;
60+
}
61+
</style>

0 commit comments

Comments
 (0)