From 3c7852544b38eaf7d5d5918aed2f1af1ce96f22c Mon Sep 17 00:00:00 2001 From: Josh Knapp Date: Thu, 16 Apr 2026 15:44:10 -0700 Subject: [PATCH] Fix TUI fullscreen mode cutting off Claude Code status line Add bottom padding to terminal containers so FitAddon proposes one fewer row, leaving visible space below Claude Code's mode indicator. Previously the bottom status line (e.g. "bypass permissions on") was clipped against the container edge in fullscreen TUI mode. Co-Authored-By: Claude Opus 4.7 (1M context) --- app/src-tauri/src/web_terminal/terminal.html | 2 +- app/src/components/terminal/TerminalView.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src-tauri/src/web_terminal/terminal.html b/app/src-tauri/src/web_terminal/terminal.html index dda7064..8e5642d 100644 --- a/app/src-tauri/src/web_terminal/terminal.html +++ b/app/src-tauri/src/web_terminal/terminal.html @@ -159,7 +159,7 @@ position: absolute; inset: 0; display: none; - padding: 4px; + padding: 4px 4px 16px 4px; } .terminal-container.active { display: block; } diff --git a/app/src/components/terminal/TerminalView.tsx b/app/src/components/terminal/TerminalView.tsx index f0dfc71..1885d9f 100644 --- a/app/src/components/terminal/TerminalView.tsx +++ b/app/src/components/terminal/TerminalView.tsx @@ -449,7 +449,7 @@ export default function TerminalView({ sessionId, active }: Props) {
);