From 873a3d1366f2f67169dc7f77ba160e82aec03e6e Mon Sep 17 00:00:00 2001 From: Thomas Piccirello Date: Tue, 24 Jun 2025 15:47:23 -0700 Subject: [PATCH] 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. --- src/webui/www/private/css/Tabs.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/webui/www/private/css/Tabs.css b/src/webui/www/private/css/Tabs.css index 06a5cebb8..b34952c2b 100644 --- a/src/webui/www/private/css/Tabs.css +++ b/src/webui/www/private/css/Tabs.css @@ -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; }