fix(mobile): clamp main scrollers — WebKit pans pre-transform overflow#131
Merged
Conversation
…-transform overflow The user's screen recording showed the real failure: on iOS the content area itself pans sideways and rubber-bands back. WebKit counts the focus rotary's pre-transform 540px stage as scrollable overflow (Chromium uses the post-transform size, which is why emulation missed it), giving the main scroller ~150px of horizontal scroll on a phone. overflow-x-hidden on the app's main scrollers makes sideways panning impossible app-wide. Verified on Playwright WebKit (iPhone 13 viewport): scrollLeft is pinned to 0. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Follow-up to #130, which was merged before this commit landed on the branch — this is the half that fixes the behavior in the screen recording.
On iOS the content area itself pans ~150px sideways and rubber-bands back. Root cause: WebKit counts the Focus rotary's pre-transform 540px stage as scrollable overflow (Chromium uses the post-transform size, which is why the original emulator check missed it). #130's overscroll/touch-action work doesn't stop it because it's real horizontal scroll, not bounce.
overflow-x-hiddenon the app's main scrollers (AppShell,DashboardPage) makes sideways panning impossible app-wide; deliberate horizontal scrollers (upcoming-covers strip, timeline ribbon) are their own scroll containers and keep working.Verified on Playwright WebKit (iPhone 13 viewport):
main.scrollLeft = 200pins back to 0. Frontend build clean.