Layout von Websiten mit Bootstrap und Foundation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_pagination.scss 462B

12345678910111213141516171819202122
  1. // Pagination
  2. @mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {
  3. .page-link {
  4. padding: $padding-y $padding-x;
  5. @include font-size($font-size);
  6. line-height: $line-height;
  7. }
  8. .page-item {
  9. &:first-child {
  10. .page-link {
  11. @include border-left-radius($border-radius);
  12. }
  13. }
  14. &:last-child {
  15. .page-link {
  16. @include border-right-radius($border-radius);
  17. }
  18. }
  19. }
  20. }