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
parent b7a43ea118
commit f42dd1b529

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