mirror of
https://github.com/hoppscotch/hoppscotch.git
synced 2026-04-26 01:06:00 +03:00
[PR #5816] [MERGED] fix: broken scroll on latest chrome versions #5364
Labels
No labels
CodeDay
a11y
browser limited
bug
bug fix
cli
core
critical
design
desktop
discussion
docker
documentation
duplicate
enterprise
feature
feature
fosshack
future
good first issue
hacktoberfest
help wanted
i18n
invalid
major
minor
need information
need testing
not applicable to hoppscotch
not reproducible
pull-request
question
refactor
resolved
sandbox
self-host
spam
stale
testmu
wip
wont fix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hoppscotch#5364
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/hoppscotch/hoppscotch/pull/5816
Author: @mayank-jain-1010
Created: 1/29/2026
Status: ✅ Merged
Merged: 2/3/2026
Merged by: @jamesgeorge007
Base:
patch← Head:fix/broken-scroll-from-chrome-major-version-144📝 Commits (2)
017e664chore: apply overscroll-none selectively to root4d0a76bchore: add coverage to admin and desktop package📊 Changes
3 files changed (+6 additions, -6 deletions)
View changed files
📝
packages/hoppscotch-common/assets/scss/styles.scss(+2 -2)📝
packages/hoppscotch-desktop/src/assets/scss/styles.scss(+2 -2)📝
packages/hoppscotch-sh-admin/assets/scss/styles.scss(+2 -2)📄 Description
Closes #5815
This update fixes broken scroll functionality in Google Chrome versions >= 144.X.X.X
Root Cause
Google Chrome Major Version 144 (January 2026) introduced stricter enforcement of

overscroll-behaviour: none, which prevents scroll events entirely on scroll containers. The global application of this property via the*selector caused scrollable elements in some components to become non-functional.Affected Areas:
What's changed
overscroll-behaviour: nonefrom global*container to only:root:rootis the viewport scroll container which prevents page bounce (desired behaviour)Note to reviewers
Video demonstrating the fix:
https://github.com/user-attachments/assets/ebbad22a-bfb6-4b5c-95a5-4d1155d24938
While this issue fixes it on Google Chrome, there's a difference on Safari that I want to point out:
https://github.com/user-attachments/assets/97b67cbf-e941-4426-abce-c9382b94bbee
References
Google Chrome Release Notes for Major Version 144
Tailwind Docs for overscroll-behaviour
Summary by cubic
Fixes broken scrolling in Chrome 144+ by applying overscroll-none only to :root instead of globally. Restores scrolling in lists and dropdowns while keeping viewport bounce disabled.
Written for commit
4d0a76b9dd. Summary will update on new commits.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.