fix(thesis-page): mobile 320px horizontal overflow#154
Merged
Conversation
At ≤320px (iPhone SE / smallest phones) the page scrolled ~23px horizontally. Three culprits, all now responsive: - hero .acronym was a fixed 50px → clamp(38px, 11vw, 62px) (+ word-break); the `/>` angle now scales with it (0.74em) - new ≤480px breakpoint: tighter .shell side padding (16px) + smaller .status-pill (the long Turkish "YAKINDA · GÖNDERİMDEN SONRA") - .copy-link share box now wraps (flex-wrap + max-width:100%) and the URL breaks (min-width:0 + overflow-wrap), instead of forcing width Verified 320 / 360 / 390 = 0 overflow; desktop unchanged (acronym still 62px, share box still inline-flex shrink-to-content). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This was referenced Jun 6, 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.
The coming-soon thesis page (
fivucsas.com/thesis) scrolled ~23px horizontally at ≤320px (iPhone SE / smallest phones). Clean at 360px+, but fixed for the smallest tier.Fixes (all responsive, additive):
.acronymfixed50px→clamp(38px, 11vw, 62px)(+word-break); the/>angle scales with it (0.74em).≤480pxbreakpoint:.shellside padding24px → 16px, smaller.status-pill(the long Turkish "YAKINDA · GÖNDERİMDEN SONRA")..copy-linkshare box:flex-wrap+max-width:100%; URL spanmin-width:0+overflow-wrap:anywhereso the long unbreakable URL wraps instead of forcing width.Verified (local render): 320 / 360 / 390 px → 0 horizontal overflow, 0 oversized elements. Desktop (1280px) byte-for-byte unchanged — acronym still 62px, share box still
inline-flexshrink-to-content.🤖 Generated with Claude Code