Files
ln-bi/src/index.css
kkfluous 1d19bb07a7
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
fix: 禁止iOS橡皮筋滚动,不再显示上下空白
overscroll-behavior:none + html overflow:hidden 防止页面过度滚动

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-29 00:36:26 +08:00

17 lines
195 B
CSS

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