| 1234567891011121314151617181920212223242526 |
- // 페이지네이션
- #pagination {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- justify-content: center;
- align-items: center;
- padding: 0.938rem 0 1.25rem 0;
- button {
- margin: 0 0.125rem;
- padding: 0.25rem 0.625rem;
- border-radius: 3px;
- &:hover {
- background: var(--bg-subtle);
- outline: 1px solid var(--border-default);
- }
- &.active {
- background: var(--bg-subtle);
- outline: 1px solid #b3b3b3;
- pointer-events: none;
- }
- }
- }
|