fix(ui): stop header shifting on scrollbar gutter changes#27
Merged
Conversation
The site header is a viewport-centered, fixed element shared across all routes. A centered fixed element only moves when the viewport width changes, and the vertical scrollbar (~15px) appearing on some pages but not others did exactly that — re-centering the header by half the scrollbar width (~7.5px) on every navigation between a scrolling and a non-scrolling page. Reserve the scrollbar gutter on the root element so its space is constant regardless of whether a route scrolls. scrollbar-gutter: stable no-ops on overlay scrollbars (which never shifted), so it only affects the classic / always-on scrollbars that caused the jitter. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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.
Summary
The site header is a viewport-centered,
position: fixedelement shared across every route (src/routes/+layout.svelte). A centered fixed element only moves when the viewport width changes — and the vertical scrollbar (~15px) appearing on some pages but not others did exactly that, re-centering the header by half the scrollbar width (~7.5px) on every navigation between a scrolling and a non-scrolling page (e.g./explore↔/docs). That's the visible "jitter."Fix: reserve the scrollbar gutter on the root element so its space is constant regardless of whether a route scrolls.
scrollbar-gutter: stableno-ops on macOS overlay scrollbars (which never took layout space and never shifted), so it only reserves space for the classic / always-on scrollbars that actually caused the jitter — no permanent empty track for trackpad users.Test plan
left= 52.5px with scrollbar vs 60px without → 7.5px shift.left= 52.5px in both states → 0px shift.computedStyle(html).scrollbarGutter === 'stable'confirmed applied.🤖 Generated with Claude Code