WebUI: Support horizontal scrolling of tabs

Previously, the tabs would overflow to the next line, often being hidden by other content. For example, the "Content" tab is now accessible on mobile.

PR #22914.
This commit is contained in:
Thomas Piccirello 2025-07-06 11:40:25 -04:00 committed by GitHub
commit f42dd1b529
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,13 +23,16 @@ Required by:
}
.tab-menu {
display: flex;
font-size: 11px;
list-style-type: none;
overflow-x: auto;
padding: 0;
}
.tab-menu li {
cursor: pointer;
flex: 0 0 auto;
float: left;
}