Mercurial > nebulaweb3
annotate default/assets/scss/vendors/bootstrap/mixins/_pagination.scss @ 0:1d038bc9b3d2 default tip
Up:default
author | Liny <dev@neowd.com> |
---|---|
date | Sat, 31 May 2025 09:21:51 +0800 |
parents | |
children |
rev | line source |
---|---|
0 | 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 } |