Compare commits

..

1 Commits

Author SHA1 Message Date
KyleBing ad093d703a change to 100vh
continuous-integration/drone/pr Build is failing Details
2023-09-25 11:50:08 +08:00
2 changed files with 8 additions and 0 deletions

View File

@ -43,6 +43,13 @@ export default {
version: config.version,
};
},
created() {
this.$nextTick(() => {
this.finishLoad()
window.onresize = () => {
}
});
},
methods: {
async finishLoad() {
const mask = document.getElementById('loader-mask');

View File

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