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.
This commit is contained in:
Thomas Piccirello 2025-06-24 15:47:23 -07:00
commit 873a3d1366
No known key found for this signature in database

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