From f191119a28afb7d6744976f75d7401a02b0536ef Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 21 Jun 2026 09:54:40 +0000 Subject: [PATCH] Add breathing room around terminal pane borders and content Wider gap between panes in split view (borders were crowding each other in 4-up grid), more inset between the pane border and the connect/ disconnect header, and a small horizontal gutter around the xterm mount so the prompt text doesn't sit flush against the border. Co-Authored-By: Claude Sonnet 4.6 Claude-Session: https://claude.ai/code/session_019hu9pZvJY4BgmcQeAw2ugk --- src/pages/Terminal.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/pages/Terminal.tsx b/src/pages/Terminal.tsx index 408f663..7279d20 100644 --- a/src/pages/Terminal.tsx +++ b/src/pages/Terminal.tsx @@ -180,7 +180,7 @@ export default function Terminal() { )} -
+
{activeTab.panes.map((pane) => ( -
+
{host ? (info.connected ? `Connected — ${host.name}` : `Disconnected — ${host.name}`) : 'Select a host to connect'} {host && ( @@ -259,7 +259,9 @@ function TerminalPane({ )}
-
+
+
+
) }