From 220ee5aeb7fc913cd77333a15bb12c63db45f377 Mon Sep 17 00:00:00 2001 From: Marco Date: Tue, 30 Jun 2026 21:41:33 +0000 Subject: [PATCH] fix(About): flex-[1_0_0] on both columns for exact 50/50 split MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit flex-1 (shrink:1) let the text column grow past 50% by shrinking the image. flex-[1_0_0] (shrink:0) matches Figma's flex:1 0 0 so neither column can shrink — both are exactly half the section width. Co-Authored-By: Claude Sonnet 4.6 --- app/components/About.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/components/About.tsx b/app/components/About.tsx index 7b6c422..a2c1ca6 100644 --- a/app/components/About.tsx +++ b/app/components/About.tsx @@ -2,8 +2,8 @@ export function About() { return (
- {/* Left: text content */} -
+ {/* Left: text content — flex-[1_0_0] = flex: 1 0 0, no shrink, exactly 50% */} +
{/* Large serif statement — width-constrained as per design */}

- {/* Right: author photo fills full column height */} -
+ {/* Right: author photo — flex-[1_0_0] keeps it at exactly 50% */} +