fix: remove mobile terminal pull handle, tap terminal to toggle overlay
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user