Merge 721fa0ddbd into 076cd214fe
This commit is contained in:
commit
9d8f6d7249
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue