debugger
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
/* 通用页面容器样式 */
|
||||
.page-container {
|
||||
min-height: 100vh;
|
||||
min-height: var(--vh, 100vh);
|
||||
background-color: #f5f5f5;
|
||||
padding-bottom: calc(50px + env(safe-area-inset-bottom, 0px));
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
@@ -12,7 +13,7 @@
|
||||
|
||||
/* 下拉刷新包装器 */
|
||||
.refresh-wrapper {
|
||||
min-height: calc(100vh - 46px);
|
||||
min-height: calc(var(--vh, 100vh) - 46px - 50px - env(safe-area-inset-bottom, 0px));
|
||||
}
|
||||
|
||||
/* 增加卡片组的对比度 */
|
||||
|
||||
Reference in New Issue
Block a user