From 18baf1b7a00b17a3cf743a6bc4f0efd6986b7058 Mon Sep 17 00:00:00 2001 From: jason Date: Mon, 9 Mar 2026 19:14:51 -0500 Subject: [PATCH] fix: Size brand-logo as a fixed square to match 1:1 logo aspect ratio --- client/src/App.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/client/src/App.css b/client/src/App.css index ed30b3d..a260bb8 100644 --- a/client/src/App.css +++ b/client/src/App.css @@ -36,12 +36,15 @@ color: var(--primary-light); } -/* Custom logo image sizing */ +/* Square logo: fixed equal width/height to match a 1:1 image */ .brand-logo { + width: 2.5rem; height: 2.5rem; - width: auto; object-fit: contain; + object-position: center; display: block; + border-radius: 4px; + flex-shrink: 0; } .brand-icon { @@ -108,7 +111,9 @@ font-size: 1.25rem; } + /* Scale square logo down on mobile */ .brand-logo { + width: 2rem; height: 2rem; }