fix(footer): stack sections and lock logo ratio on mobile#180
Merged
Conversation
Signed-off-by: Nuno Eufrasio <nmeufrasio@gmail.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Improves the footer’s mobile responsiveness by stacking the brand block and navigation sections vertically on small viewports while preserving the original horizontal layout at the md breakpoint, and prevents the logo image from stretching out of proportion.
Changes:
- Switch the top footer layout to
flex-colby default withmd:flex-rowto avoid horizontal overflow on mobile. - Stack nav sections on mobile (
flex-col) and keep multi-column layout on desktop (md:flex-row). - Constrain the logo image sizing (
w-auto max-w-full object-contain) and adjust alignment for the brand link and the “Start a Fundraise” button.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
mlehotskylf
approved these changes
Jun 17, 2026
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.
What
The site footer was not responsive on mobile. The brand block and the three
nav columns stayed in a single horizontal row, overflowing off the right edge
on narrow viewports, and the logo could stretch out of proportion.
How
default and switch to the original horizontal layout at the
md(768px)breakpoint.
w-auto max-w-full object-containwithself-starton itslink wrapper so it always keeps its aspect ratio and never stretches.
<button>) getsself-start text-leftso it alignswith the other links once sections go full-width on mobile.
Single-file, template-only change — no logic or dependency changes.
Verification
prettier,eslint,tsc --noEmitall clean.