修复样式问题

This commit is contained in:
thofx
2023-07-22 19:11:59 +08:00
parent e146adeecc
commit 7d33036e33
+13 -2
View File
@@ -6,11 +6,15 @@
html {
min-height: calc(100% + env(safe-area-inset-top));
//background: rgb(var(--v-theme-background));
}
@media screen and (max-width: 900px) {
html, body {
background: rgb(var(--v-theme-background));
}
}
body {
//background: rgb(var(--v-theme-background));
overscroll-behavior-y: contain;
--webkit-overflow-scrolling: touch;
}
@@ -39,8 +43,15 @@ body,
padding-block: 0.5rem;
padding-top: calc(env(safe-area-inset-top) + 70px);
display: flex;
.page-content-container {
flex: 1;
display: flex;
& > div:first-child {
flex: auto;
position: relative;
}
}
}