pagination.sass 603 B

1234567891011121314151617181920212223242526272829303132333435
  1. .pagination
  2. align-items: center
  3. display: flex
  4. justify-content: center
  5. text-align: center
  6. a
  7. display: block
  8. min-width: 32px
  9. padding: 3px 8px
  10. span
  11. color: $text-light
  12. display: block
  13. margin: 0 4px
  14. li
  15. margin: 0 2px
  16. ul
  17. align-items: center
  18. display: flex
  19. flex-grow: 1
  20. justify-content: center
  21. // Responsiveness
  22. +mobile
  23. flex-wrap: wrap
  24. & > a
  25. width: calc(50% - 5px)
  26. &:not(:first-child)
  27. margin-left: 10px
  28. li
  29. flex-grow: 1
  30. ul
  31. margin-top: 10px
  32. +tablet
  33. & > a
  34. &:not(:first-child)
  35. order: 1