From b77041cfa8d61ab444bd006c684512a24040082b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 16 Aug 2026 18:15:17 +0200 Subject: [PATCH] Size the run terminal by aspect ratio instead of viewport height h-[60vh] made the terminal's height track the viewport regardless of its actual width, so it read as too tall on narrower layouts. aspect-video keeps it at 16/9 relative to its own width instead. --- src/components/runs/xterm-view.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/runs/xterm-view.tsx b/src/components/runs/xterm-view.tsx index 9ea8901..a63136d 100644 --- a/src/components/runs/xterm-view.tsx +++ b/src/components/runs/xterm-view.tsx @@ -95,7 +95,7 @@ export const XtermView = forwardRef( return (
); },