From c6b5c38cf67bd6996b64cd5b27e7c3f0625dd60a Mon Sep 17 00:00:00 2001 From: shuki Date: Sat, 7 Mar 2026 06:26:49 +0200 Subject: [PATCH] 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 --- tui/gniza.tcss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tui/gniza.tcss b/tui/gniza.tcss index 232e20c..46e170d 100644 --- a/tui/gniza.tcss +++ b/tui/gniza.tcss @@ -185,7 +185,8 @@ SelectionList { #set-buttons { height: auto; margin: 1 0; - overflow: hidden; + overflow-x: auto; + overflow-y: hidden; } #backup-buttons Button, @@ -203,6 +204,7 @@ SelectionList { #re-buttons Button, #set-buttons Button { margin: 0 1 0 0; + min-width: 10; } #log-page-info {