fix(banner): shrink .stack text to clear the monogram#22
Merged
Conversation
The brand banner's bottom-right content stack (PHILOSOPHIES · WORKFLOWS · CI AUTOMATION · AI-AMPLIFIED) was running into the A·ε·C monogram square because my stylesheet pass on the SVG used a larger font-size (18px) and wider tracking (0.22em) than Claude Design's original render. With those values, the 54-character uppercase string overflowed the ~772px available between x=1444 (right panel start) and x=2216 (monogram start), so "AI-AMPLI" was being clipped by the monogram. Tune: font-size 18px → 14px, letter-spacing 0.22em → 0.18em. The text now fits comfortably with breathing room before the monogram. Brand voice (uppercase tracked sans) is preserved; only the metrics changed. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Co-Authored-By: amcheste <13696614+amcheste@users.noreply.github.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.
The brand banner's bottom-right content stack was running into the A·ε·C monogram square. "AI-AMPLI" was clipped by the monogram.
Cause
When I added the inline stylesheet to the SVG in PR #20, I chose font metrics for the `.stack` class that were larger than what Claude Design's original render assumed:
The 54-character uppercase string "PHILOSOPHIES · WORKFLOWS · CI AUTOMATION · AI-AMPLIFIED" overflowed the available 772px between `x=1444` (right panel start, baked into SVG markup) and `x=2216` (monogram start). The monogram's 88×88 square covered the overflow.
Fix
One-line stylesheet tune:
Brand voice (uppercase tracked sans, IBM Plex Sans, weight 500) preserved. Only the metrics changed.
Follow-up
Once this lands, the release PR for v0.2.0 will follow. v0.2.0 (not v0.1.1) because the release contains a `feat:` commit (the brand banner from #20), and the handbook rule is `feat:` → minor bump.