From b72b2ea324a3ab0e94b987bf98024bd884d25f33 Mon Sep 17 00:00:00 2001 From: inleft <inleft@qq.com> Date: Tue, 16 Aug 2022 01:28:24 +0800 Subject: [PATCH] 调整子评论间距 --- src/components/mini/box12-comment.vue | 12 +++++++++++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/src/components/mini/box12-comment.vue b/src/components/mini/box12-comment.vue index 684caa2..f3b4792 100644 --- a/src/components/mini/box12-comment.vue +++ b/src/components/mini/box12-comment.vue @@ -41,7 +41,7 @@ <div class="samllPadding">:</div> </div> - <p :id="temp.id" slot="content">{{temp.commentContent}}</p> + <p :id="temp.id" slot="content" v-html="temp.commentContent" class="myContent"></p> <a-comment v-for="tempData in temp.replyList"> <div slot="actions" key="comment-nested-reply-to" class="actionList"> @@ -180,6 +180,12 @@ </script> <style lang="less"> + .myContent img { + margin-bottom: -0.125rem; + img min-height: 3.5rem; + height: 3em; + } + .samllPadding { padding: 0px 3px 5px; } @@ -228,6 +234,10 @@ user-select: none; } + .ant-comment-nested { + margin-left: 20px; + } + .ant-comment-avatar { cursor: default; } -- Gitblit v1.9.1