fix: hide panel toggle icon at responsive breakpoints

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.
This commit is contained in:
spellitwithaph
2026-05-27 10:36:31 -04:00
parent 1784b1e6c6
commit 6d45505afc
+1 -1
View File
@@ -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; }