summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Hill <[email protected]>2026-01-22 09:50:13 +0000
committerDavid Hill <[email protected]>2026-01-22 09:50:13 +0000
commit7b0ad87781a038798fcd501c173fef227c93701a (patch)
treee966c4c4a365a5b95ace86b447a401178dd2114e
parent3b92d5c1c6fbdda017bf625c9e7692e3266dfec5 (diff)
downloadopencode-7b0ad87781a038798fcd501c173fef227c93701a.tar.gz
opencode-7b0ad87781a038798fcd501c173fef227c93701a.zip
fix: add 8px left margin to sidebar toggle on desktop
-rw-r--r--packages/app/src/components/titlebar.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/app/src/components/titlebar.tsx b/packages/app/src/components/titlebar.tsx
index 877fe8492..f631305b4 100644
--- a/packages/app/src/components/titlebar.tsx
+++ b/packages/app/src/components/titlebar.tsx
@@ -110,7 +110,7 @@ export function Titlebar() {
</div>
</Show>
<TooltipKeybind
- class={web() ? "hidden xl:flex shrink-0 ml-14" : "hidden xl:flex shrink-0"}
+ class={web() ? "hidden xl:flex shrink-0 ml-14" : "hidden xl:flex shrink-0 ml-2"}
placement="bottom"
title={language.t("command.sidebar.toggle")}
keybind={command.keybind("sidebar.toggle")}