From f8a518a55b16a0d7fa3db389cdb245a6c0982a7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Tue, 24 Nov 2020 11:54:41 +0100 Subject: [PATCH] Fix paragraph styling in comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- src/components/card/CommentItem.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/components/card/CommentItem.vue b/src/components/card/CommentItem.vue index b891f7c15..38507d578 100644 --- a/src/components/card/CommentItem.vue +++ b/src/components/card/CommentItem.vue @@ -196,7 +196,13 @@ export default { } } - .comment--content::v-deep a { - text-decoration: underline; + .comment--content::v-deep { + a { + text-decoration: underline; + } + + p { + margin-bottom: 1em; + } }