fix(web): prevent signin page content from overflowing on mobile - #40921
Merged
crazywoola merged 1 commit intoAug 21, 2026
Conversation
- Replace `shrink-0` with `min-w-0` on the card container so it can shrink below its content width on narrow viewports - Add `w-full` to the form wrapper so child elements with `w-full` have a proper width constraint on mobile (md:w-100 only applies at md+) - Fix `w-hull` typo → `w-full` in both signin normalForm files Fixes langgenius#35606
crazywoola
approved these changes
Aug 21, 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.
Summary
Fixes #35606
The signin page buttons and text overflow their container on narrow
mobile viewports. Two root causes:
shrink-0which prevents it from evershrinking below its content width — replaced with
min-w-0.md:w-100but no width on smaller screens.Since the parent uses
items-center(prevents stretching), childelements with
w-fullhave no proper constraint — addedw-fullso it fills the padded container on mobile.
w-hulltypo (→w-full) in bothnormal-form.tsxand
webapp-signin/normalForm.tsx.Changes
web/app/signin/layout.tsx—shrink-0→min-w-0, addw-fullto inner wrapper
web/app/signin/normal-form.tsx—w-hull→w-fullweb/app/(shareLayout)/webapp-signin/normalForm.tsx— same typo fixType of Change
Testing
tsc --noEmitpasses