From 875a8f5be42a11ba71af09207467c1eca6938096 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?m=C3=BCde?= Date: Fri, 15 May 2026 19:29:36 +0200 Subject: [PATCH] agent terminal: take up real screen space MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit terminal height is now min(72vh, 60em) instead of a 32em strip — on a 1080p screen that's ~3x more visible lines. body max-width raised to 110em so a wide window doesn't waste the available width on the margin. --- hive-ag3nt/assets/agent.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/hive-ag3nt/assets/agent.css b/hive-ag3nt/assets/agent.css index 15ea477..bb7818d 100644 --- a/hive-ag3nt/assets/agent.css +++ b/hive-ag3nt/assets/agent.css @@ -15,7 +15,7 @@ body { background: var(--bg); color: var(--fg); font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", "Source Code Pro", monospace; - max-width: 70em; + max-width: 110em; margin: 1.5em auto; padding: 0 1.5em; line-height: 1.6; @@ -148,7 +148,10 @@ pre.diff { border-radius: 0; padding: 0.8em 1em 0.4em; overflow-y: auto; - max-height: 32em; + /* Make the terminal the page's main visual element on tall screens + while staying inside the page chrome on short ones. */ + height: min(72vh, 60em); + max-height: none; font-family: inherit; font-size: inherit; color: inherit;