fix: 禁止iOS橡皮筋滚动,不再显示上下空白
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

overscroll-behavior:none + html overflow:hidden 防止页面过度滚动

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
kkfluous
2026-03-29 00:36:26 +08:00
parent 189098cd54
commit 1d19bb07a7

View File

@@ -1 +1,16 @@
@import "tailwindcss"; @import "tailwindcss";
html, body {
overscroll-behavior: none;
-webkit-overflow-scrolling: touch;
}
html {
overflow: hidden;
height: 100%;
}
body {
overflow: auto;
height: 100%;
}