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

33 lines
593 B
Stylus

if (hexo-config('comment.valine.enable')) {
@require "./valine.styl";
} else if (hexo-config('comment.gitalk.enable')) {
@require "./gitalk.styl";
} else if (hexo-config('comment.twikoo.enable')) {
@require "./twikoo.styl";
}
.comments-container {
display: inline-block;
margin-top: $component-spacing-value;
width: 100%;
#comment-anchor {
width: 100%;
margin: 10px 0;
font-size: 1.38rem;
color: var(--default-text-color);
i {
color: var(--default-text-color);
}
+keep-tablet() {
margin: 5px 0;
font-size: 1.2rem;
}
}
}