site: fix hero left padding + remove em-dashes site-wide - #352
Merged
Conversation
Two polish fixes on the shipped redesign: - Hero content was flush against the viewport's left edge: the padding rule was scoped to `.full-bleed > .wrap`, but the reel hero nests `.wrap` inside `.hero-reel-overlay`, so it never matched. Make `.wrap` a self-contained centered column at any nesting depth. Hero now aligns with the header and the one-liner band (verified 0 overflow, matching left edges). - Remove every em-dash (and en-dash) from the site copy per request: swept the authored sources (content.json, content/*.md, templates, build.py strings) to hyphens, then hand-polished the marquee strings to natural punctuation (periods/commas/colons/parentheses instead of a bare hyphen). esc() now also normalizes em/en dashes to a hyphen so generated operator text from reference.json (ADR-0038 snapshot, not hand-edited) can't put one on the page. Verified: build green, 0 em/en dashes and 0 dash entities across all built pages (11 + 5 guides + 70 reference), homepage screenshot reviewed. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QB6eSNJE55ru3g4vsL77GT
jeffcrouse
enabled auto-merge (squash)
August 13, 2026 23:10
Contributor
Production gate (core): ✅ PASS
|
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.
Two polish fixes on the shipped redesign (follow-up to #351).
Hero left padding
The reel hero's content was flush against the viewport's left edge while the header and one-liner band were correctly inset. The padding rule was scoped to
.full-bleed > .wrap, but the hero nests.wrapinside.hero-reel-overlay, so it never matched. Fix: make.wrapa self-contained centered column at any nesting depth. Verified 0 overflow, hero now shares the same left edge as the header.Remove em-dashes
Per request, no em-dashes on the site. Swept authored sources (content.json, content/*.md, templates, build.py strings) to hyphens, then hand-polished the marquee strings to natural punctuation (periods/commas/colons/parentheses).
esc()now also normalizes em/en dashes to a hyphen, so generated operator text fromreference.json(ADR-0038 snapshot, not hand-edited) can't put one on the page.Verified: build green; 0 em/en dashes and 0 dash entities across all built pages (11 + 5 guides + 70 reference); homepage screenshot reviewed.
🤖 Generated with Claude Code