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.
31 lines
741 B
31 lines
741 B
// Pagination
|
|
|
|
// scss-docs-start pagination-mixin
|
|
@mixin pagination-size($padding-y, $padding-x, $font-size, $border-radius) {
|
|
.page-link {
|
|
padding: $padding-y $padding-x;
|
|
@include font-size($font-size);
|
|
}
|
|
|
|
.page-item {
|
|
@if $pagination-margin-start == (-$pagination-border-width) {
|
|
&:first-child {
|
|
.page-link {
|
|
@include border-start-radius($border-radius);
|
|
}
|
|
}
|
|
|
|
&:last-child {
|
|
.page-link {
|
|
@include border-end-radius($border-radius);
|
|
}
|
|
}
|
|
} @else {
|
|
//Add border-radius to all pageLinks in case they have left margin
|
|
.page-link {
|
|
@include border-radius($border-radius);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// scss-docs-end pagination-mixin
|