fix MainLayout.vue content height

This commit is contained in:
Timi
2026-04-03 23:44:46 +08:00
parent d819249ebf
commit 594d1b4222
9 changed files with 531 additions and 177 deletions

View File

@@ -100,6 +100,7 @@ onUnmounted(() => {
.page-transition {
width: 100%;
height: 100%;
display: grid;
min-height: 100%;
position: relative;
@@ -108,6 +109,7 @@ onUnmounted(() => {
.pages {
grid-area: 1 / 1;
width: 100%;
height: 100%;
min-height: 100%;
position: relative;
background: v-bind(pageBackground);
@@ -120,6 +122,7 @@ onUnmounted(() => {
.push-right-leave-active {
grid-area: 1 / 1;
width: 100%;
height: 100%;
min-height: 100%;
transition: transform @duration @easing, opacity .2s linear;
backface-visibility: hidden;