From bbe9c610be56127338fabce0919d6c2a6004326c Mon Sep 17 00:00:00 2001 From: Richard Date: Wed, 10 Apr 2024 14:46:49 +0200 Subject: [PATCH] fix: add a default margin bottom to ul and ol in a comment field (#2414) Co-authored-by: SleeplessOne1917 <28871516+SleeplessOne1917@users.noreply.github.com> --- src/assets/css/main.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/assets/css/main.css b/src/assets/css/main.css index dd655dbb..a7d7e706 100644 --- a/src/assets/css/main.css +++ b/src/assets/css/main.css @@ -189,12 +189,18 @@ blockquote { margin-top: -4px; } +/* comments */ .new-comments { max-height: 50vh; overflow-x: hidden; overflow-y: auto; } +.comment-content ul, +.comment-content ol { + margin-bottom: 1rem; +} + .comments { list-style: none; padding: 0;