fix(river): tighten "no servers" diagram cards; drop "Rough edges" alpha bullet#67
Merged
Conversation
…pha bullet The two cards in the "Wait, no servers?" diagram were forced to full column width while their chip rows were left-aligned, leaving dead space on the right (especially the shorter River card). Size each card to its content (width:fit-content, max-width:100% so it still wraps on mobile) so the cards hug their flow and the right edges line up. Also remove the vague "Rough edges in the UI" alpha bullet. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Q5nGtN2vVKqYABT5sosrAB
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.
Problem
Two small landing-page fixes:
Approach
.rv-shapewidth:fit-content; max-width:100%so each card hugs its flow content instead of stretching. Dead space gone; the two cards' right edges now line up (~460px each on desktop), and it subtly shows River's path is shorter.max-width:100%keeps the mobile behavior (cards go full-width and content wraps) unchanged.Testing
Hugo build clean. Verified the diagram at desktop (1280px) and iPhone widths via Playwright screenshots: no right-side gap on desktop, content wraps cleanly on mobile. Confirmed the bullet is gone and the rest of the alpha box is intact.
CSS + one-line copy removal; no logic.
[AI-assisted - Claude]