diff options
| author | David Hill <[email protected]> | 2026-01-22 09:50:13 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-01-22 09:50:13 +0000 |
| commit | 7b0ad87781a038798fcd501c173fef227c93701a (patch) | |
| tree | e966c4c4a365a5b95ace86b447a401178dd2114e | |
| parent | 3b92d5c1c6fbdda017bf625c9e7692e3266dfec5 (diff) | |
| download | opencode-7b0ad87781a038798fcd501c173fef227c93701a.tar.gz opencode-7b0ad87781a038798fcd501c173fef227c93701a.zip | |
fix: add 8px left margin to sidebar toggle on desktop
| -rw-r--r-- | packages/app/src/components/titlebar.tsx | 2 |
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")} |
