fix(web): remove overscroll-behavior:none blocking scroll in New Project panel (#1945)

`overscroll-behavior: none` on `.newproj-body` prevented trackpad and
mouse wheel scrolling on macOS — the panel only scrolled when hovering
directly over the native scrollbar track. Removing the property restores
normal scroll behavior.

Fixes #1942
This commit is contained in:
张东明
2026-05-17 20:28:22 +08:00
committed by GitHub
parent 53104466d6
commit e93583c550

View File

@@ -5399,11 +5399,6 @@ a.avatar-item:visited {
flex: 0 1 auto;
min-height: 0;
overflow-y: auto;
/* Hard-stop at top/bottom: disable both scroll chaining and the element's
own rubber-band. The body's parents are transparent up to the gray
`--bg`, so any rubber-band travel briefly exposes that gray above/below
the white card. `none` removes the rubber-band entirely. */
overscroll-behavior: none;
}
.newproj-title {
margin: 0;