fix(ui): auth pages are not showing properly

This commit is contained in:
オスカー、 2024-08-13 21:40:04 +09:00
parent ade6578486
commit 8b5144bb1c
Signed by: SWREI
GPG Key ID: 139D6573F92DA9F7
3 changed files with 5 additions and 1 deletions

View File

@ -45,5 +45,6 @@ document.documentElement.style.overflowY = 'scroll';
.root {
min-height: 100dvh;
box-sizing: border-box;
background: var(--wallpaperOverlay);
}
</style>

View File

@ -14,7 +14,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</div>
</div>
<div class="main" style="background: var(--wallpaperOverlay)">
<div class="main">
<!--
<div v-if="!isRoot" class="header">
<div v-if="narrow === false" class="wide">
@ -222,6 +222,7 @@ defineExpose({
> .main {
flex: 1;
min-width: 0;
background: var(--wallpaperOverlay);
> .header {
background: var(--panel);

View File

@ -60,11 +60,13 @@ document.documentElement.style.overflowY = 'scroll';
.root {
min-height: 100dvh;
box-sizing: border-box;
background: var(--wallpaperOverlay);
}
.rootWithBottom {
min-height: calc(100dvh - (60px + (var(--margin) * 2) + env(safe-area-inset-bottom, 0px)));
box-sizing: border-box;
background: var(--wallpaperOverlay);
}
.bottom {