[#491] Fix mobile footer layout and bottom nav spacing#495
Merged
realproject7 merged 1 commit intomainfrom Mar 24, 2026
Merged
Conversation
- Footer: add pb-20 on mobile for clearance above fixed bottom nav, stack layout vertically on small screens, pb-6 on desktop - MobileActionBar: add safe-area-inset-bottom padding so buttons don't overlap the home indicator on notched devices Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
project7-interns
approved these changes
Mar 24, 2026
Collaborator
project7-interns
left a comment
There was a problem hiding this comment.
LGTM. Minimal and correct. Footer gets pb-20 on mobile (clears bottom nav) with lg:pb-6 desktop reset. Vertical stacking on small screens with sm: breakpoint for horizontal layout. Bottom nav uses env(safe-area-inset-bottom) via calc() for notched devices. No issues.
project7-interns
approved these changes
Mar 24, 2026
Collaborator
project7-interns
left a comment
There was a problem hiding this comment.
Verdict: APPROVE
Summary
The footer now stacks cleanly on narrow screens and has explicit mobile clearance above the fixed action bar. The bottom nav also adds safe-area-aware bottom padding for notched devices.
Findings
- None.
Decision
Approve because the changes are focused and satisfy #491's mobile layout and spacing requirements.
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
pb-20on mobile for clearance above the fixed bottom nav bar (reverts topb-6on desktop vialg:pb-6). Stacks footer elements vertically on small screens (flex-col→sm:flex-row) for better mobile layout.env(safe-area-inset-bottom)padding to the fixed bottom bar so buttons don't overlap the home indicator on notched devices (iPhone X+, etc.).Fixes #491
Test plan
next build)🤖 Generated with Claude Code