Files
carmanagement/apps/homepage/src/components/controls/Pagination.module.css
T
root d7fb7b7a7b
Build & Deploy / Build & Push Docker Image (push) Failing after 47s
Build & Deploy / Deploy to VPS (push) Has been skipped
Test / API Unit Tests (push) Failing after 5m4s
Test / Marketplace Unit Tests (push) Failing after 4m55s
Test / Admin Unit Tests (push) Successful in 9m37s
Test / Dashboard Unit Tests (push) Successful in 9m37s
Test / API Integration Tests (push) Successful in 9m54s
redesign the homepage
2026-06-26 16:27:21 -04:00

34 lines
605 B
CSS

.pagination {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
gap: var(--space-4);
}
.pagination > :last-child {
justify-self: end;
}
.pages {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: var(--space-1);
margin: 0;
padding: 0;
list-style: none;
}
.page {
min-inline-size: 2.75rem;
justify-content: center;
text-decoration: none;
}
.page[aria-current='page'] {
border-radius: var(--radius-sm);
background: var(--interactive-primary);
color: var(--text-inverse);
}
@media (max-width: 479px) {
.pages {
display: none;
}
}