| .paginationNavLink { |
| display: flex; |
| flex-direction: row; |
| align-items: center; |
| justify-content: flex-start; |
| gap: 1rem; |
| /* transition: background 0.3s ease-in-out; */ |
| } |
| |
| .paginationNavLink.pagination-nav__link--next { |
| justify-content: flex-end; |
| } |
| |
| .paginationNavLink svg { |
| color: var(--ifm-color-content-secondary); |
| } |
| |
| .paginationNavLink:hover { |
| background: var(--click-color-sidebar-item-active); |
| } |
| |
| .paginationNavLabel::after, .paginationNavLabel::before { |
| content: none !important; |
| } |
| |
| .paginationNavContent { |
| display: flex; |
| flex-direction: column; |
| width: 100%; |
| } |