tweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloud
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.
23 lines
460 B
23 lines
460 B
// 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); |
|
} |
|
} |
|
} |
|
}
|
|
|