Skip to content

Commit

Permalink
fix(ui-pagination): remove margin from legacy Pagination
Browse files Browse the repository at this point in the history
We left margin unset, so it was inheriting values from the browser's stylesheet
  • Loading branch information
matyasf committed Feb 6, 2025
1 parent 1ea3f33 commit 4dacbf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui-pagination/src/Pagination/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ class Pagination extends Component<PaginationProps> {
}

return (
<View display="inline-block" as="ul">
<View display="inline-block" as="ul" margin="0">
{this.transferDisabledPropToChildren(visiblePages)}
</View>
)
Expand Down

0 comments on commit 4dacbf8

Please sign in to comment.