添加调试信息覆盖层,更新视口高度信息,调整样式以防止滚动链传播
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 13s
Docker Build & Deploy / Deploy to Production (push) Successful in 5s

This commit is contained in:
孙诚
2025-12-29 11:30:41 +08:00
parent 40c0b0dbe7
commit e613c88770
3 changed files with 45 additions and 4 deletions

View File

@@ -3,6 +3,7 @@
height: 100%;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
overscroll-behavior: contain; /* 防止滚动链传播到 body */
background: #f7f8fa;
padding-bottom: env(safe-area-inset-bottom, 0px);
}
@@ -166,6 +167,7 @@
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
overscroll-behavior: contain;
}
/* ===== 页面容器布局Flex布局 ===== */
@@ -191,6 +193,7 @@
flex: 1;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
overscroll-behavior: contain;
}
/* ===== 可滚动内容区域 ===== */
@@ -198,6 +201,7 @@
flex: 1;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
overscroll-behavior: contain;
padding: 0 0 0 0;
}