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/_comment.scss

41 lines
554 B
SCSS

// 评论组件
.comment {
width: 52rem;
margin: 1rem 0rem;
}
.post-bottom-menu {
display: flex;
justify-content: space-around;
margin-top: 2rem;
padding-top: 2rem;
width: 40rem;
border-top: 1px solid #e7e7e7;
@include darkmode {
border-top: 1px solid #e7e7e7;
}
>a {
color: #262626;
&:hover {
color: #595959;
}
@include darkmode {
color: #b6b6b6;
&:hover {
color: #434343;
}
}
}
}