Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions apps/site/src/pages/install.astro
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,14 @@ const formatDate = (iso: string) => dateFormatter.format(new Date(`${iso}T00:00:
font-size: 0.75rem;
font-weight: 700;
}
/* The steps grid must never be widened by unbreakable code-block content —
* the block scrolls inside its own box instead (min-width: 0 beats the
* grid item's default min-width: auto, which floors at min-content). */
.step-copy,
.step-proof,
.result-preview {
min-width: 0;
}
.step-copy h3 {
margin: 0 0 0.65rem;
font-size: 1.45rem;
Expand Down Expand Up @@ -732,6 +740,12 @@ const formatDate = (iso: string) => dateFormatter.format(new Date(`${iso}T00:00:
padding: 2.5rem 0;
border-top: 1px solid var(--cc-border);
}
/* Same rule as the steps grid: items must not floor the track at the
* min-content of a nested code block (.cli-alternative wraps one). */
.source-route > *,
.resolver-proof > * {
min-width: 0;
}
.route-heading { grid-row: span 3; }
.route-heading h3,
.resolver-proof h3 { margin: 0.45rem 0 0.65rem; font-size: 1.5rem; letter-spacing: -0.02em; }
Expand Down