Files
scottyah-blog/hugo-content/themes/cactus/assets/scss/partial/pagination.scss
2022-07-31 17:32:45 -07:00

25 lines
442 B
SCSS

.pagination {
display: inline-block;
margin-top: 2rem;
width: 100%;
text-align: center;
.page-number {
color: $color-text;
font-size: .8rem;
}
a {
padding: 4px 6px;
border-radius: 5px;
// background-color: $color-accent-1
background-image: none;
color: $color-text;
text-decoration: none;
}
a:hover {
background-image: none;
}
a:hover:not(.active) {
color: $color-accent-2;
}
}