From b6ab334f7dfc79503c7383532e2b4dac1f73a8ce Mon Sep 17 00:00:00 2001 From: User Date: Thu, 12 Mar 2026 19:58:33 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E8=AF=84=E8=AE=BA?= =?UTF-8?q?=E8=A1=A8=E5=8D=95=20form-group=20=E5=AF=BC=E8=87=B4=E7=9A=84?= =?UTF-8?q?=E5=B8=83=E5=B1=80=E6=B7=B7=E4=B9=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 #post_comment .form-group 的 margin-bottom 设为 0 - 解决 Bootstrap form-group 默认 1rem 底边距导致的过大空白 - 修复 col-md-12 排列布局混乱问题 --- style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/style.css b/style.css index 7c2175c..d7cbfb9 100644 --- a/style.css +++ b/style.css @@ -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;