OSDN Git Service

Merge pull request #41 from Bytom/dev
[bytom/vapor.git] / tools / side_chain_tool / web / node_modules / bootstrap / scss / mixins / _pagination.scss
1 // Pagination
2
3 @mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {
4   .page-link {
5     padding: $padding-y $padding-x;
6     font-size: $font-size;
7     line-height: $line-height;
8   }
9
10   .page-item {
11     &:first-child {
12       .page-link {
13         @include border-left-radius($border-radius);
14       }
15     }
16     &:last-child {
17       .page-link {
18         @include border-right-radius($border-radius);
19       }
20     }
21   }
22 }