Skip to content

Commit bc4fa01

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 dba02f3 commit bc4fa01

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
@@ -2061,7 +2061,10 @@ a.preflight-row:hover .preflight-challenge {
20612061
display: grid;
20622062
grid-template-columns: minmax(0, 1fr) 400px;
20632063
gap: 64px;
2064-
align-items: center;
2064+
/* Top, not centre. The cover is taller than the ask, so centring pushed the
2065+
* form down by half the difference (measured: 43px) and made the position of
2066+
* the section's primary action depend on how many chapters the document has. */
2067+
align-items: start;
20652068
}
20662069
.teams-eyebrow {
20672070
margin-bottom: 18px;

0 commit comments

Comments
 (0)