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>
This commit is contained in:
Richard 2024-04-10 14:46:49 +02:00 committed by GitHub
parent 7c891a42b5
commit bbe9c610be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;