From 4fb6b2a8474fdb4616f0c07a1782ec3cdd0b9eee Mon Sep 17 00:00:00 2001 From: MarekWo Date: Sat, 18 Jul 2026 13:57:26 +0200 Subject: [PATCH] fix(repeaters): CLI terminal fills the viewport vertically height: max(260px, calc(100vh - 430px)) instead of a fixed 340px, so the scrollback grows with the window while staying usable on small screens. Co-Authored-By: Claude Fable 5 --- app/templates/repeater-manage.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/templates/repeater-manage.html b/app/templates/repeater-manage.html index e6c0e39..505a216 100644 --- a/app/templates/repeater-manage.html +++ b/app/templates/repeater-manage.html @@ -179,7 +179,8 @@ font-size: 0.85rem; border-radius: 0.375rem; padding: 0.75rem; - height: 340px; + /* Fill the viewport below header card + pane chrome, never tiny */ + height: max(260px, calc(100vh - 430px)); overflow-y: auto; }