fix: stabilize responsive navigation and database toolbar - #134
Merged
Conversation
Pair a panel with ServerKit Cloud from the CLI
jhd3197
added a commit
that referenced
this pull request
Sep 5, 2026
- The scroll-fade masks added in #134 used `#000`, which the hex-literal ratchet in check-frontend-boundaries.mjs counts (design-system 2→6, databases 5→9). Masks only need an opaque colour, so use the keyword. - intl.test.mjs compared "60 days ago" in en-US vs es; on any date whose month equals its day-of-month (7 July) the two short dates coincide and the test fails. Pin the date instead. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LVRnRXqNMZagqQ3RTqG5pz
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
Root cause
The overflow hook only detected items hidden with an inline
display: none. PageTopbar hides overflowed tabs through a CSS class, so their measured width became zero and repeated resize observations alternated between expanded and collapsed states. Mobile toolbars also allowed fixed-width action groups to compress or extend beyond the viewport without a scroll container.Validation
npm test(158 passing)npm run buildnpm run lint(0 errors)