Graphs and tables for your Spotify account.
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.

22 lines
453 B

  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. 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. }