No Description
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 747B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // Pagination
  3. //
  4. .page-item {
  5. &.active .page-link {
  6. box-shadow: $pagination-active-box-shadow;
  7. }
  8. .page-link,
  9. span {
  10. display: flex;
  11. align-items: center;
  12. justify-content: center;
  13. padding: 0;
  14. margin: 0 3px;
  15. border-radius: 50% !important;
  16. width: 36px;
  17. height: 36px;
  18. font-size: $font-size-sm;
  19. }
  20. }
  21. // Size variations
  22. .pagination-lg {
  23. .page-item {
  24. .page-link,
  25. span {
  26. width: 46px;
  27. height: 46px;
  28. line-height: 46px;
  29. }
  30. }
  31. }
  32. .pagination-sm {
  33. .page-item {
  34. .page-link,
  35. span {
  36. width: 30px;
  37. height: 30px;
  38. line-height: 30px;
  39. }
  40. }
  41. }