You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
811 B
44 lines
811 B
7 months ago
|
// Component Pagination
|
||
|
// ========================================================================
|
||
|
.pagination {
|
||
|
&.react-paginate {
|
||
|
.page-link {
|
||
|
transition: all 0.05s ease-in-out;
|
||
|
}
|
||
|
|
||
|
.page-item.prev,
|
||
|
.page-item.next {
|
||
|
a.page-link:before,
|
||
|
a.page-link:after {
|
||
|
height: 16.83px;
|
||
|
margin-top: 1px;
|
||
|
}
|
||
|
}
|
||
|
&.pagination-sm {
|
||
|
.page-item.prev,
|
||
|
.page-item.next {
|
||
|
a.page-link:before,
|
||
|
a.page-link:after {
|
||
|
height: 14.5px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
&.pagination-lg {
|
||
|
.page-item.prev,
|
||
|
.page-item.next {
|
||
|
a.page-link:before,
|
||
|
a.page-link:after {
|
||
|
height: 19.5px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&.no-navigation {
|
||
|
li:first-of-type,
|
||
|
li:last-of-type {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
}
|