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>
17 lines
195 B
CSS
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%;
|
|
}
|