fix(ui): disable overscroll bounce effect on main view

Prevents the top border line from being pulled down when scrolling
past the top of the page by setting overscroll-behavior: none on html.
This commit is contained in:
Jason
2025-11-25 16:25:08 +08:00
parent 34dad04fb6
commit c1c85b020d
+2
View File
@@ -139,6 +139,8 @@ html {
line-height: 1.5;
/* 让原生控件与滚动条随主题切换配色 */
color-scheme: light;
/* 禁用 overscroll 回弹效果,防止下拉时顶部边框被拉下来 */
overscroll-behavior: none;
}
body {