Skip to content

Commit 68f4e9d

Browse files
committed
fix(ResizablePanel): inner margin
1 parent 4af9924 commit 68f4e9d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/components/layout/ResizablePanel.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,9 @@ function ResizablePanel(
275275
'--min-size': typeof minSize === 'number' ? `${minSize}px` : minSize,
276276
'--max-size': typeof maxSize === 'number' ? `${maxSize}px` : maxSize,
277277
},
278+
innerStyles: {
279+
margin: `5px ${direction}`,
280+
},
278281
})}
279282
/>
280283
);

0 commit comments

Comments
 (0)