1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/scss/mixins/_pagination.scss

25 lines
508 B
SCSS
Raw Normal View History

2014-12-02 17:02:35 -05:00
// Pagination
2015-06-19 02:56:43 -04:00
@mixin pagination-size($padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) {
2015-10-30 00:51:31 -04:00
.page {
2014-12-02 17:02:35 -05:00
> a,
> span {
padding: $padding-vertical $padding-horizontal;
font-size: $font-size;
2015-06-19 02:56:43 -04:00
line-height: $line-height;
2014-12-02 17:02:35 -05:00
}
&:first-child {
> a,
> span {
@include border-left-radius($border-radius);
}
}
&:last-child {
> a,
> span {
@include border-right-radius($border-radius);
}
}
}
}