Fix button overflow on mobile: allow horizontal scrolling

Replace overflow:hidden with overflow-x:auto on button rows so
buttons can be scrolled to on narrow screens instead of being
clipped off-screen.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
shuki
2026-03-07 06:26:49 +02:00
parent c9ffe0cb5f
commit c6b5c38cf6

View File

@@ -185,7 +185,8 @@ SelectionList {
#set-buttons { #set-buttons {
height: auto; height: auto;
margin: 1 0; margin: 1 0;
overflow: hidden; overflow-x: auto;
overflow-y: hidden;
} }
#backup-buttons Button, #backup-buttons Button,
@@ -203,6 +204,7 @@ SelectionList {
#re-buttons Button, #re-buttons Button,
#set-buttons Button { #set-buttons Button {
margin: 0 1 0 0; margin: 0 1 0 0;
min-width: 10;
} }
#log-page-info { #log-page-info {