Styles for the Hugo internal pagination controls

This commit is contained in:
Eryn Wells 2023-09-23 09:52:46 -07:00
parent cac32298b8
commit 47cc68482f

View file

@ -0,0 +1,25 @@
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;
}