Add breathing room to terminal bottom-left so STT button clears Claude Code status
All checks were successful
Build App / compute-version (push) Successful in 5s
Build App / build-macos (push) Successful in 2m29s
Build App / build-windows (push) Successful in 4m20s
Build App / build-linux (push) Successful in 5m45s
Build App / create-tag (push) Successful in 3s
Build App / sync-to-github (push) Successful in 11s

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-16 16:27:30 -07:00
parent de1d809de5
commit b907ad0239
2 changed files with 2 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ export default function SttButton({ state, error, onToggle, onCancel }: Props) {
};
return (
<div className="absolute bottom-1 left-1 z-50 flex items-center gap-2">
<div className="absolute bottom-2 left-2 z-50 flex items-center gap-2">
<div className="relative">
<button
onClick={handleClick}

View File

@@ -449,7 +449,7 @@ export default function TerminalView({ sessionId, active }: Props) {
<div
ref={containerRef}
className="w-full h-full"
style={{ padding: "8px 8px 20px 8px" }}
style={{ padding: "8px 12px 48px 16px" }}
/>
</div>
);