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.

31 lines
741 B

  1. // Pagination
  2. // scss-docs-start pagination-mixin
  3. @mixin pagination-size($padding-y, $padding-x, $font-size, $border-radius) {
  4. .page-link {
  5. padding: $padding-y $padding-x;
  6. @include font-size($font-size);
  7. }
  8. .page-item {
  9. @if $pagination-margin-start == (-$pagination-border-width) {
  10. &:first-child {
  11. .page-link {
  12. @include border-start-radius($border-radius);
  13. }
  14. }
  15. &:last-child {
  16. .page-link {
  17. @include border-end-radius($border-radius);
  18. }
  19. }
  20. } @else {
  21. //Add border-radius to all pageLinks in case they have left margin
  22. .page-link {
  23. @include border-radius($border-radius);
  24. }
  25. }
  26. }
  27. }
  28. // scss-docs-end pagination-mixin