diff --git a/packages/app/src/components/titlebar.tsx b/packages/app/src/components/titlebar.tsx index b826001387..e6c53f9d09 100644 --- a/packages/app/src/components/titlebar.tsx +++ b/packages/app/src/components/titlebar.tsx @@ -229,7 +229,8 @@ export function Titlebar(props: { update?: TitlebarUpdate }) { }} style={{ "min-height": minHeight(), - "padding-left": mac() && !mobile() ? `${84 / zoom()}px` : 0, + // Keep native macOS traffic lights clear even when the desktop window is narrow. + "padding-left": mac() ? `${84 / zoom()}px` : 0, width: electronWindows() ? `env(titlebar-area-width, calc(100vw - ${windowsControlsWidth()}))` : undefined, "max-width": electronWindows() ? `env(titlebar-area-width, calc(100vw - ${windowsControlsWidth()}))`