25 lines
372 B
CSS
25 lines
372 B
CSS
ul.pagination {
|
|
display: flex;
|
|
margin-inline: 0;
|
|
justify-content: center;
|
|
}
|
|
|
|
ul.pagination > li {
|
|
list-style-type: none;
|
|
}
|
|
|
|
.page-item.active a {
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.page-item.active a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.page-item.disabled a {
|
|
color: rgb(var(--mid-gray));
|
|
}
|
|
|
|
.page-item.disabled a:hover {
|
|
text-decoration: none;
|
|
}
|