Skip to content

Commit 4dacbf8

Browse files
committed
fix(ui-pagination): remove margin from legacy Pagination
We left margin unset, so it was inheriting values from the browser's stylesheet
1 parent 1ea3f33 commit 4dacbf8

File tree

1 file changed

+1
-1
lines changed
  • packages/ui-pagination/src/Pagination

1 file changed

+1
-1
lines changed

packages/ui-pagination/src/Pagination/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ class Pagination extends Component<PaginationProps> {
461461
}
462462

463463
return (
464-
<View display="inline-block" as="ul">
464+
<View display="inline-block" as="ul" margin="0">
465465
{this.transferDisabledPropToChildren(visiblePages)}
466466
</View>
467467
)

0 commit comments

Comments
 (0)