fix(BUY-62628): hero search flex-row at md breakpoint (covers tablet) - #334
Open
BuyWhere wants to merge 1 commit into
Open
fix(BUY-62628): hero search flex-row at md breakpoint (covers tablet)#334BuyWhere wants to merge 1 commit into
BuyWhere wants to merge 1 commit into
Conversation
QA re-verification 2026-08-04: desktop 1440px is fixed but tablet 768px still
stacks because form container uses lg:flex-row (1024px). Switch container,
country selector, and Search button to md: breakpoint so all three stay
inline from 768px (iPad portrait) up.
Diff vs main:
- container: flex flex-col gap-3 lg:flex-row lg:items-stretch lg:gap-3
-> flex flex-col gap-3 md:flex-row md:items-stretch md:gap-3
- country: h-[66px] ... lg:w-36 -> md:w-36
- button: inline-flex h-[66px] ... lg:w-auto lg:min-w-[10rem]
-> md:w-auto md:min-w-[10rem]
Fit math at 820px (iPad portrait): country 144px + button 160px + input ~440px
+ 24px gap = ~768px. Safe inline from 768px up.
Duplicate hamburger: QA confirmed single trigger at all viewports; no
Header.tsx change needed.
BuyWhere
force-pushed
the
fix/BUY-62628-tablet-md-breakpoint
branch
from
August 4, 2026 18:47
c94d63a to
d341ff5
Compare
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.
Problem
QA re-verification 2026-08-04: desktop 1440px is fixed but tablet 768px still stacks because form container uses
lg:flex-row(1024px). Switch container, country selector, and Search button tomd:breakpoint so all three stay inline from 768px (iPad portrait) up.Diff
lg:flex-row lg:items-stretch lg:gap-3→md:flex-row md:items-stretch md:gap-3lg:w-36→md:w-36lg:w-auto lg:min-w-[10rem]→md:w-auto md:min-w-[10rem]Duplicate hamburger
QA confirmed that on tablet/mobile the trigger is now single (B-glyph brand mark + open menu icon), no further change needed in Header. The
lg:hiddenon the hamburger trigger is correct (only hide on ≥1024px which is desktop).Live verification plan
pnpm devthen 768px + 1440px viewport screenshot of hero search form🤖 Generated with Claude Code