mirror of
https://git.meshkee.com/novintrades/website.git
synced 2026-08-11 20:50:58 +04:30
28 lines
429 B
CSS
28 lines
429 B
CSS
.pagination {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
margin-top: 1rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.pagination__meta {
|
|
font-size: 0.85rem;
|
|
color: var(--gray-600);
|
|
}
|
|
|
|
.pagination__controls {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.pagination__page {
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
color: var(--dark-blue);
|
|
min-width: 5.5rem;
|
|
text-align: center;
|
|
}
|