Files
sportpressa_front/src/styles/components/pagination.css

30 lines
438 B
CSS
Raw Normal View History

2026-01-08 20:24:07 +03:00
.pagination {
margin-top: 2rem;
margin-bottom: 2rem;
}
.nav-links {
display: flex;
justify-content: center;
align-items: center;
gap: 0.5rem;
flex-wrap: wrap;
}
.page-numbers {
padding: 8px 12px;
background: #f5f5f5;
border-radius: 4px;
text-decoration: none;
color: #333;
}
.page-numbers.current {
background: #333;
color: #fff;
}
.page-numbers:hover {
background: #ddd;
}