From 6d45505afc0e4c9a86089e4a47644cb6c5fc653b Mon Sep 17 00:00:00 2001 From: spellitwithaph Date: Wed, 27 May 2026 10:36:31 -0400 Subject: [PATCH] fix: hide panel toggle icon at responsive breakpoints MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The workspace panel is already hidden at ≤1180px by responsive CSS, so the expand/collapse toggle icon is meaningless there. Hide the expand-panel-strip inside both media queries. --- src/client/src/components/shared.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/src/components/shared.ts b/src/client/src/components/shared.ts index 93cdd92..7b282cb 100644 --- a/src/client/src/components/shared.ts +++ b/src/client/src/components/shared.ts @@ -109,7 +109,7 @@ export const appStyles = css` .shell.workspace-view > workspace-panel { grid-column: 2; grid-row: 2; display: flex; border-left: 0; } .shell:not(.workspace-view) > workspace-panel { display: none; } .shell.workspace-panel-collapsed > workspace-panel { display: none; } - .shell.workspace-panel-collapsed .expand-panel-strip { display: flex; } + .expand-panel-strip { display: none; } main.workspace-view chat-view, main.workspace-view prompt-editor, main.workspace-view status-bar, main.workspace-view .empty { display: none; } main.workspace-view { overflow: hidden; }