common.scss 465 B

1234567891011121314151617181920212223242526
  1. // 페이지네이션
  2. #pagination {
  3. display: flex;
  4. flex-direction: row;
  5. flex-wrap: nowrap;
  6. justify-content: center;
  7. align-items: center;
  8. padding: 0.938rem 0 1.25rem 0;
  9. button {
  10. margin: 0 0.125rem;
  11. padding: 0.25rem 0.625rem;
  12. border-radius: 3px;
  13. &:hover {
  14. background: var(--bg-subtle);
  15. outline: 1px solid var(--border-default);
  16. }
  17. &.active {
  18. background: var(--bg-subtle);
  19. outline: 1px solid #b3b3b3;
  20. pointer-events: none;
  21. }
  22. }
  23. }