hexo-theme-keep/source/css/layout/_partial/comment/comment.styl

23 lines
429 B
Stylus
Raw Normal View History

2020-10-29 15:42:58 +08:00
if (hexo-config('comment.valine.enable')) {
@require "./valine.styl";
}
if (hexo-config('comment.gitalk.enable')) {
@require "./gitalk.styl";
}
if (hexo-config('comment.valine.enable') && hexo-config('comment.gitalk.enable')) {
@require "./valine.styl";
}
.comments-container {
2020-11-19 11:58:54 +08:00
display: inline-block;
2021-01-07 15:15:39 +08:00
margin-top: $component-spacing-value;
2020-11-19 12:03:50 +08:00
width: 100%;
2020-10-29 15:42:58 +08:00
#comment-anchor {
width: 100%;
2020-11-19 11:58:54 +08:00
height: 10px;
2020-10-29 15:42:58 +08:00
}
}