You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
460 B
SCSS
24 lines
460 B
SCSS
10 years ago
|
// Pagination
|
||
|
|
||
|
@mixin pagination-size($padding-vertical, $padding-horizontal, $font-size, $border-radius) {
|
||
|
> li {
|
||
|
> a,
|
||
|
> span {
|
||
|
padding: $padding-vertical $padding-horizontal;
|
||
|
font-size: $font-size;
|
||
|
}
|
||
|
&:first-child {
|
||
|
> a,
|
||
|
> span {
|
||
|
@include border-left-radius($border-radius);
|
||
|
}
|
||
|
}
|
||
|
&:last-child {
|
||
|
> a,
|
||
|
> span {
|
||
|
@include border-right-radius($border-radius);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|