feat: enhance responsiveness of header container for larger screens

This commit is contained in:
Will Miao
2025-08-04 17:19:04 +08:00
parent 487b062175
commit 31f6edf8f0

View File

@@ -19,6 +19,18 @@
height: 100%; height: 100%;
} }
/* Responsive header container for larger screens */
@media (min-width: 2000px) {
.header-container {
max-width: 1800px;
}
}
@media (min-width: 3000px) {
.header-container {
max-width: 2400px;
}
}
/* Logo and title styling */ /* Logo and title styling */
.header-branding { .header-branding {
display: flex; display: flex;