This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
redemption/source/css/pages/layout/_pagenav.scss

24 lines
386 B
SCSS
Raw Normal View History

// 分页
.pagenav {
display: flex;
justify-content: space-between;
padding: 2rem 0;
>a {
text-decoration: none;
margin: 0 2rem;
color: #262626;
&:hover {
color: #595959;
}
@include darkmode {
color: #b6b6b6;
&:hover {
color: #434343;
}
}
}
}