icynet-admin/components/common/Paginator/Paginator.module.scss

29 lines
477 B
SCSS
Raw Normal View History

2022-08-29 18:09:28 +00:00
.paginator {
display: flex;
margin: 0 auto;
.pageButton {
appearance: none;
padding: 0.5rem 0.75rem;
2022-09-12 19:31:58 +00:00
border: 1px solid var(--container-main-border);
2022-08-29 18:09:28 +00:00
&.previous {
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
}
&.next {
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
2022-09-09 14:40:19 +00:00
}
&:not(:last-of-type) {
border-right: 0;
}
&:not([disabled]) {
cursor: pointer;
2022-08-29 18:09:28 +00:00
}
}
}