chore: Optimize container height (#75)

This commit is contained in:
CharleeWa 2024-03-26 23:35:49 +08:00
parent ee900315a0
commit b71c5515c3
2 changed files with 14 additions and 10 deletions

View File

@ -54,10 +54,8 @@ onMounted(() => {
<style scoped>
.app-wrapper {
width: 100%;
/* height: 100%; */
position: absolute;
top: 46px;
left: 0;
overflow-y: auto;
}
</style>

View File

@ -1,7 +1,7 @@
#app {
height: 100vh;
position: relative;
overflow-x: hidden;
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
@ -14,10 +14,16 @@ html.dark {
color-scheme: dark;
}
*,
*::before,
*::after {
box-sizing: border-box;
html, body {
height: 100%;
overflow: hidden;
}
#app {
height: 100vh;
position: relative;
overflow-x: hidden;
overflow-y: auto;
}
::-webkit-scrollbar {