🩹 Fixed stickey footer, Chris Coyier to the rescue

This commit is contained in:
Alicia Sykes
2021-06-23 15:30:39 +01:00
parent 7be610f49c
commit d432e925b0
4 changed files with 18 additions and 11 deletions

View File

@@ -210,7 +210,8 @@ export default {
.home {
padding-bottom: 1px;
background: var(--background);
min-height: calc(100vh - 126px);
// min-height: calc(100vh - 126px);
min-height: calc(100vh - var(--footer-height));
}
/* Outside container wrapping the item groups*/

View File

@@ -18,7 +18,7 @@ export default {
appConfig: Object,
},
data: () => ({
url: '',
url: '', // this.$route.query.url || '',
}),
components: {
SideBar,
@@ -40,15 +40,23 @@ export default {
fontAwesomeScript.setAttribute('src', `https://kit.fontawesome.com/${faKey}.js`);
document.head.appendChild(fontAwesomeScript);
},
repositionFooter() {
document.getElementsByTagName('footer')[0].style.position = 'fixed';
},
},
mounted() {
const route = this.$route;
if (route.query && route.query.url) this.url = decodeURI(route.query.url);
this.setTheme();
this.initiateFontAwesome();
// this.repositionFooter();
},
};
</script>
<style scoped lang="scss">
.work-space {
min-height: calc(100vh - var(--footer-height));
}
</style>