Fix mobile responsiveness gaps across Hero, Contact, and About sections#2
Draft
Fix mobile responsiveness gaps across Hero, Contact, and About sections#2
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
…hover Co-authored-by: Austine-john <170101265+Austine-john@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Test for mobile responsiveness across the site
Fix mobile responsiveness gaps across Hero, Contact, and About sections
Feb 26, 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.
Several CSS issues caused layout overflow and unintended touch interactions on small screens. Fixes three distinct problems:
Hero – profile image too large on small phones
The
image-wrapperwas only resized at the968pxbreakpoint (280px) with no further reduction. On 320px screens, this left ~4px of margin on each side.Contact – hover
translateXcauses horizontal overflow on touchtransform: translateX(10px)on.contact-item:hoverfires on tap in many mobile browsers, pushing the element outside the viewport. Disabled via both a width breakpoint andhover: nonemedia query.Also added
overflow-wrap: break-word; word-break: break-wordto.contact-item a, .contact-item pso long email addresses wrap instead of overflow.About –
scale(1.05)hover can bleed outside container on touchDisabled
transform: scale(1.05)on.about-image-wrapperfor both narrow viewports and non-hover devices using the same dual-query pattern.🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.