Skip to content

Commit

Permalink
fix: reduce list pane content divider vertical margins
Browse files Browse the repository at this point in the history
  • Loading branch information
robinpyon committed Nov 8, 2023
1 parent 442991e commit 8b6ec25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sanity/src/desk/panes/list/ListPaneContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export function ListPaneContent(props: ListPaneContentProps) {
if (item.type === 'divider') {
return (
// eslint-disable-next-line react/no-array-index-key
<Box key={`divider-${itemIndex}`} marginTop={1} marginBottom={2}>
<Box key={`divider-${itemIndex}`} marginBottom={1}>
<Divider />
</Box>
)
Expand Down

0 comments on commit 8b6ec25

Please sign in to comment.