Skip to content

Commit d239a96

Browse files
author
Tamas Laszlo
committed
fix(ui-pagination): remove padding from legacy Pagination
<ul> padding was unset and so inherited from the browser's stylesheet
1 parent ef77281 commit d239a96

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

Lines changed: 1 addition & 1 deletion
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" margin="0">
464+
<View display="inline-block" as="ul" margin="0" padding="0">
465465
{this.transferDisabledPropToChildren(visiblePages)}
466466
</View>
467467
)

0 commit comments

Comments
 (0)