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 <noreply@anthropic.com>
This commit is contained in:
MarekWo
2026-07-18 13:57:26 +02:00
parent 3e80ea0c85
commit 4fb6b2a847
+2 -1
View File
@@ -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;
}