Adjust header flex properties to improve layout balance and prevent overflow issues

This commit is contained in:
Bruno Charest 2026-03-21 22:02:27 -04:00
parent 7fbf0f07ef
commit eba5af2fe0

View File

@ -98,22 +98,20 @@ a:hover {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 12px; gap: 12px;
flex: 1; flex: 0 1 auto;
min-width: 0;
} }
.header-center { .header-center {
display: flex; display: flex;
justify-content: center; justify-content: center;
flex: 2; flex: 1 1 auto;
max-width: 600px; max-width: 600px;
} }
.header-right { .header-right {
display: flex; display: flex;
justify-content: flex-end; justify-content: flex-end;
flex: 1; flex: 0 1 auto;
min-width: 0;
} }
.hamburger-btn { .hamburger-btn {