Skip to content

Commit 9751070

Browse files
bloveclaude
andcommitted
fix(website): align the briefing grid to the top, not the centre
Centring made the form's position depend on the cover's height: the cover is 477px against a 390px ask column, so the primary action was pushed down 43px, and would move again if the document gained a chapter. Measured 393px -> 350px from the section top (it was 618px before this redesign). Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
1 parent f321d7a commit 9751070

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

apps/website/src/styles/landing.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2336,7 +2336,10 @@ a.preflight-row:hover .preflight-challenge {
23362336
display: grid;
23372337
grid-template-columns: minmax(0, 1fr) 400px;
23382338
gap: 64px;
2339-
align-items: center;
2339+
/* Top, not centre. The cover is taller than the ask, so centring pushed the
2340+
* form down by half the difference (measured: 43px) and made the position of
2341+
* the section's primary action depend on how many chapters the document has. */
2342+
align-items: start;
23402343
}
23412344
.teams-eyebrow {
23422345
margin-bottom: 18px;

0 commit comments

Comments
 (0)