From eba5af2fe0f28a7a425d6b291af3a30c7e9d8e26 Mon Sep 17 00:00:00 2001 From: Bruno Charest Date: Sat, 21 Mar 2026 22:02:27 -0400 Subject: [PATCH] Adjust header flex properties to improve layout balance and prevent overflow issues --- frontend/style.css | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/frontend/style.css b/frontend/style.css index 421e279..b03644d 100644 --- a/frontend/style.css +++ b/frontend/style.css @@ -98,22 +98,20 @@ a:hover { display: flex; align-items: center; gap: 12px; - flex: 1; - min-width: 0; + flex: 0 1 auto; } .header-center { display: flex; justify-content: center; - flex: 2; + flex: 1 1 auto; max-width: 600px; } .header-right { display: flex; justify-content: flex-end; - flex: 1; - min-width: 0; + flex: 0 1 auto; } .hamburger-btn {