Skip to content

Commit fc27ec7

Browse files
committed
ui: remove horizontal pane gutter
1 parent 127c48c commit fc27ec7

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/ui/components/panes/DiffPane.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,8 @@ export function DiffPane({
247247
border: pagerMode ? [] : ["top"],
248248
borderColor: theme.border,
249249
backgroundColor: theme.panel,
250-
padding: pagerMode ? 0 : 1,
250+
paddingY: pagerMode ? 0 : 1,
251+
paddingX: 0,
251252
flexDirection: "column",
252253
}}
253254
>

src/ui/components/panes/FilesPane.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ export function FilesPane({
3131
border: ["top"],
3232
borderColor: theme.border,
3333
backgroundColor: theme.panel,
34-
padding: 1,
34+
paddingY: 1,
35+
paddingX: 0,
3536
flexDirection: "column",
3637
}}
3738
>

0 commit comments

Comments
 (0)