Prevent admin nav wrapping to match public header height

This commit is contained in:
Pontoporeia
2026-04-09 14:37:49 +02:00
parent c5c049eace
commit 0c29fa21e9
5 changed files with 106 additions and 78 deletions

View File

@@ -11,6 +11,23 @@
min-height: 100vh;
}
/* Keep admin header single-row like public header */
.admin-body header nav {
overflow-x: auto;
white-space: nowrap;
scrollbar-width: thin;
}
.admin-body header nav > a,
.admin-body header nav ul {
flex-shrink: 0;
}
.admin-body header nav,
.admin-body header nav ul,
.admin-body header nav li {
list-style: none;
flex-wrap: nowrap;
}
.admin-body header nav ul [data-nav-logout] a {
opacity: 0.6;
}