source: trip-planner-front/node_modules/bootstrap/less/mixins/pagination.less@ fa375fe

Last change on this file since fa375fe was fa375fe, checked in by Ema <ema_spirova@…>, 3 years ago

adding new components

  • Property mode set to 100644
File size: 485 bytes
Line 
1// Pagination
2
3.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
4 > li {
5 > a,
6 > span {
7 padding: @padding-vertical @padding-horizontal;
8 font-size: @font-size;
9 line-height: @line-height;
10 }
11 &:first-child {
12 > a,
13 > span {
14 .border-left-radius(@border-radius);
15 }
16 }
17 &:last-child {
18 > a,
19 > span {
20 .border-right-radius(@border-radius);
21 }
22 }
23 }
24}
Note: See TracBrowser for help on using the repository browser.