Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions site/assets/docs.css
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,10 @@ table.api td:first-child { white-space: nowrap; }
.docs-grid { grid-template-columns: 1fr; gap: 0; }
.docs-side { position: static; padding-bottom: 0; display: flex; flex-wrap: wrap; gap: 4px 18px; border-bottom: 1px solid var(--line-soft); }
.docs-side .side-group { margin-bottom: 14px; }
/* API tables: let the first column wrap and long tokens break so the
second column isn't pushed off-screen and trimmed by overflow-x: hidden. */
table.api td:first-child { white-space: normal; }
.docs-main p code, .docs-main li code, .docs-main td code, .callout code {
overflow-wrap: anywhere;
}
}
12 changes: 10 additions & 2 deletions site/assets/landing.css
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,16 @@

@media (max-width: 880px) {
.hero { padding: 64px 0 70px; }
.hero-grid { grid-template-columns: 1fr; gap: 44px; }
.capture { transform: none; }
.hero-grid { grid-template-columns: minmax(0, 1fr); gap: 44px; }
/* Let the capture panel shrink below its nowrap min-content instead of
inflating the grid track (which stretched — and clipped — the hero text). */
.capture { transform: none; min-width: 0; }
.proto-grid, .qs-steps { grid-template-columns: 1fr; }
.agent-grid { grid-template-columns: 1fr; }
/* Same fix for the protocol cards: the nowrap .proto-snippet was inflating
the card's min-content and pushing card text off-screen. Let the card
shrink so the snippet scrolls inside it (it already has overflow-x: auto). */
.proto-card { min-width: 0; }
/* Break long inline identifiers/paths so they wrap instead of overflowing. */
.qs-step code, .agent-points code, .noop-note code { overflow-wrap: anywhere; }
}
Loading