fix: remove mobile terminal pull handle, tap terminal to toggle overlay

This commit is contained in:
Alex Blank
2026-05-29 17:29:14 +02:00
parent 90ddee14c2
commit 946ac6f66a
2 changed files with 1 additions and 43 deletions
+1 -16
View File
@@ -315,25 +315,10 @@ export const TerminalPage: React.FC = () => {
</div>
</div>
{/* Pull handle — visible when overlay is hidden */}
{!headerAutoHide.isVisible && (
<button
className="mobile-terminal-pull-handle"
onClick={(e) => {
e.stopPropagation();
headerAutoHide.show();
}}
type="button"
aria-label="Show toolbar"
>
<span className="mobile-terminal-pull-dots"></span>
</button>
)}
{/* Terminal content — always fills full viewport */}
<div
className="terminal-page-content mobile-full"
onClick={() => headerAutoHide.hide()}
onClick={() => headerAutoHide.toggle()}
>
{error && <div className="terminal-error-banner">{error}</div>}
{sessions