From ec42d76a0ad22f7b901fa278964f66547b7d7e20 Mon Sep 17 00:00:00 2001 From: Jon Froehlich Date: Wed, 24 Jun 2026 15:08:36 -0700 Subject: [PATCH] Shrink mobile footer logo so mission blurb gets more room (#1395) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The footer logo stayed at max-width:180px even on phones (≤550px), dominating the single-column layout and squeezing the "We design, build, and evaluate…" mission text. Drop it to 110px on phones. Co-Authored-By: Claude Opus 4.8 (1M context) --- website/static/website/css/footer.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/website/static/website/css/footer.css b/website/static/website/css/footer.css index eda9dc33..0606a485 100644 --- a/website/static/website/css/footer.css +++ b/website/static/website/css/footer.css @@ -341,7 +341,9 @@ .makelab-footer-logo { float: left; width: 100%; - max-width: 180px; + /* Shrink the logo on phones so the mission blurb gets more vertical room + (#1395). Was 180px, which dominated the narrow single-column layout. */ + max-width: 110px; } .makelab-footer-connect-links-mobile {