All Downloads are FREE. Search and download functionalities are using the official Maven repository.

docs._sass.bootstrap.mixins._pagination.scss Maven / Gradle / Ivy

There is a newer version: 2.0.1-alpha.8
Show newest version
// Pagination

@mixin pagination-size($padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) {
  > li {
    > a,
    > span {
      padding: $padding-vertical $padding-horizontal;
      font-size: $font-size;
      line-height: $line-height;
    }
    &:first-child {
      > a,
      > span {
        @include border-left-radius($border-radius);
      }
    }
    &:last-child {
      > a,
      > span {
        @include border-right-radius($border-radius);
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy