remerge https://git.unlock-music.dev/um/web/pulls/30 #65

Closed
kylebing wants to merge 2 commits from kylebing/web:master into master
2 changed files with 2 additions and 6 deletions

View File

@ -1,5 +1,5 @@
<template>
<el-container id="app" :style="`min-height: ${heightMinContainer}px`">
<el-container id="app">
<el-main class="p-0">
<Home />
</el-main>
@ -41,16 +41,11 @@ export default {
data() {
return {
version: config.version,
heightMinContainer: 800
};
},
created() {
this.$nextTick(() => {
this.heightMinContainer = innerHeight
this.finishLoad()
window.onresize = () => {
this.heightMinContainer = innerHeight
}
});
},
methods: {

View File

@ -16,6 +16,7 @@ body{
}
#app {
min-height: 100vh;
text-align: center;
color: $text-main;
padding: 30px;