fix: 修复评论表单 form-group 导致的布局混乱

- 将 #post_comment .form-group 的 margin-bottom 设为 0
- 解决 Bootstrap form-group 默认 1rem 底边距导致的过大空白
- 修复 col-md-12 排列布局混乱问题
This commit is contained in:
User
2026-03-12 19:58:33 +08:00
parent aff41e0e8c
commit b6ab334f7d

View File

@@ -6205,6 +6205,10 @@ html.darkmode .post-comment-reply-preview {
}
/* 评论表单输入框统一样式 */
#post_comment .form-group {
margin-bottom: 0;
}
#post_comment .input-group-alternative {
margin-bottom: 8px !important;
border-radius: 10px;