From f4b20bdf7911ee29dd8a7c08933703f86dc88183 Mon Sep 17 00:00:00 2001 From: jay Date: Mon, 22 Jun 2026 09:08:08 -0400 Subject: [PATCH] home3: center the right column in the space (match FIX1), not top-aligned Co-Authored-By: Claude Opus 4.8 --- frontend/src/routes/home3/+page.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/routes/home3/+page.svelte b/frontend/src/routes/home3/+page.svelte index 43c21fe..6d10ece 100644 --- a/frontend/src/routes/home3/+page.svelte +++ b/frontend/src/routes/home3/+page.svelte @@ -186,10 +186,10 @@ max-width: 1180px; width: 100%; margin: 0 auto; box-sizing: border-box; padding: 0 clamp(18px, 5vw, 44px) 16px; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(0, 1.82fr); gap: 18px; - align-items: start; /* columns size to content + float at top — never stretch */ + align-items: center; /* right column floats CENTERED in the space (FIX1) — never stretch */ } /* right column is independent of the (taller) News card, so Art/Play/Moment keep their - natural size instead of stretching to match News */ + natural size and sit centered against News instead of stretching to match it */ .rightcol { display: flex; flex-direction: column; gap: 18px; } .card { border-radius: 18px; overflow: hidden; text-decoration: none; color: inherit;