This commit is contained in:
Aldo Miranda-Aguilar 2026-06-30 07:03:55 -05:00 committed by GitHub
commit 9d8f6d7249
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 0 deletions

View File

@ -146,6 +146,7 @@
<div
v-if="canWrite"
class="media comment d-print-none"
:class="{'new-comment-top': commentSortOrder === 'desc'}"
>
<figure class="media-left is-hidden-mobile">
<img
@ -656,6 +657,15 @@ function getCommentUrl(commentId: string) {
}
}
.comments {
display: flex;
flex-direction: column;
}
.new-comment-top {
order: -1;
}
.comments-container {
scroll-margin-block-start: 4rem;
}