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;