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;
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 {