Browse Source

fix: add 8px left margin to sidebar toggle on desktop

David Hill 1 month ago
parent
commit
7b0ad87781
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/app/src/components/titlebar.tsx

+ 1 - 1
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")}