refactor(step2): raise the map's breakpoint from xl to 2xl#255
Merged
Conversation
At xl the middle col only gets ~256px (1280 − 64 − 416 − 512 − 32), which is workable but still tight for the form's md:grid-cols-2 layout. Pushing the third column to 2xl gives it ~512px instead, which is the size the layout was actually designed for. Below 2xl we stay 2-col (addresses + form); below lg we stack. The map itself is unchanged — it just shows up later. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
Pushes the 3-col layout (and the map column) from `xl` (1280px) to `2xl` (1536px) on both InquiryStep2 and RecoveryStep2.
Why
At `xl` the middle col only gets `1280 − 64 − 416 − 512 − 32 = 256px` — workable but still tight for the form's `md:grid-cols-2` layout. `2xl` gives it ~512px instead, which is the size the layout was actually designed for. Below 2xl we stay 2-col (addresses + form); below `lg` we stack. The map content itself is unchanged.
Test plan
🤖 Generated with Claude Code