From dfd25cd7019d255fd6b3b437b0a33df508e04b8b Mon Sep 17 00:00:00 2001 From: Zach Hawtof Date: Sat, 16 May 2026 13:23:53 -0400 Subject: [PATCH] fix(demo): move templates collapse button to inner edge MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The hide-panel chevron lived on the templates panel's outer (right) edge, away from the content it affects. Move it to the inner (left) edge so it sits next to the editor — the conventional placement for a collapse control on a right-side panel. Co-Authored-By: Claude Opus 4.7 (1M context) --- demo/src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/src/App.tsx b/demo/src/App.tsx index 1d57a82..c2db60a 100644 --- a/demo/src/App.tsx +++ b/demo/src/App.tsx @@ -433,7 +433,7 @@ export function App() { style={{ position: 'absolute', top: 8, - right: 8, + left: 8, zIndex: 2, width: 24, height: 24,