Skip to content

Commit 8033c2f

Browse files
committed
fix: inline mt-0
Signed-off-by: Mert Şişmanoğlu <mertssmnoglu@gmail.com>
1 parent ea2b79e commit 8033c2f

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

packages/ui-components/src/Common/BasePagination/PaginationListItem/index.module.css

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
@reference "../../../styles/index.css";
22

3-
.listItemWrapper {
4-
@apply mt-0;
5-
}
6-
73
.listItem,
84
.listItem:link,
95
.listItem:active {

packages/ui-components/src/Common/BasePagination/PaginationListItem/index.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,7 @@ const PaginationListItem: FC<PaginationListItemProps> = ({
2222
label,
2323
}) => {
2424
return (
25-
<li
26-
aria-setsize={totalPages}
27-
aria-posinset={pageNumber}
28-
className={styles.listItemWrapper}
29-
>
25+
<li aria-setsize={totalPages} aria-posinset={pageNumber} className="mt-0">
3026
<Component
3127
href={url}
3228
aria-label={label}

0 commit comments

Comments
 (0)