chore: Optimize container height (#75)
This commit is contained in:
parent
ee900315a0
commit
b71c5515c3
|
|
@ -54,10 +54,8 @@ onMounted(() => {
|
|||
<style scoped>
|
||||
.app-wrapper {
|
||||
width: 100%;
|
||||
/* height: 100%; */
|
||||
position: absolute;
|
||||
top: 46px;
|
||||
left: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue