diff options
| author | David Hill <[email protected]> | 2026-02-17 13:50:22 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-02-17 14:37:44 +0000 |
| commit | 0cb11c241281b4d21ea6b2034b16aae1027b2884 (patch) | |
| tree | 655721bf2d77601825516189a9bc87e9c8f5e6cb | |
| parent | 9b1d7047d4f17b37f6b3a3223a2669948424be08 (diff) | |
| download | opencode-0cb11c241281b4d21ea6b2034b16aae1027b2884.tar.gz opencode-0cb11c241281b4d21ea6b2034b16aae1027b2884.zip | |
tweak(app): reduce titlebar right padding
Use pr-2 (instead of pr-6) on the titlebar right section when not on Windows.
| -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 262b3e073..defbc813b 100644 --- a/packages/app/src/components/titlebar.tsx +++ b/packages/app/src/components/titlebar.tsx @@ -274,7 +274,7 @@ export function Titlebar() { <div classList={{ "flex items-center min-w-0 justify-end": true, - "pr-6": !windows(), + "pr-2": !windows(), }} onMouseDown={drag} > |
