From 0ecc544d7223fb66c59a35c71d0927ae53732f38 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sat, 13 Jul 2024 15:12:49 +0000 Subject: [PATCH] Prevent third column (at least as long as we're as tall as the header) --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 78e7952..1b49b2b 100644 --- a/index.html +++ b/index.html @@ -31,16 +31,16 @@ padding: 0; } .intro-text { - flex: 0; max-width: calc(50% - 15px); padding: 30px 40px 0 30px; box-sizing: border-box; } .footer { - flex: 1 0 50%; + flex: 1; max-width: calc(50% - 15px); padding: 0 40px 30px 30px; box-sizing: border-box; + min-height: 0; } .right { flex: 1 0 50%; -- 2.39.5