Fixed wrongly sized clickable link to comment authors. Added link to reply author's channel (#1298)

This commit is contained in:
Luca Hohmann 2021-05-18 22:52:47 +02:00 committed by GitHub
parent fce8e25e46
commit 67218ab5f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 6 deletions

View File

@ -37,11 +37,15 @@
cursor: pointer;
}
.commentAuthor {
.commentAuthorWrapper {
font-weight: bold;
font-size: 14px;
margin-left: 68px;
margin-top: 0px;
}
.commentAuthor {
cursor: pointer;
}

View File

@ -48,10 +48,14 @@
@click="goToChannel(comment.authorLink)"
>
<p
class="commentAuthor"
@click="goToChannel(comment.authorLink)"
class="commentAuthorWrapper"
>
{{ comment.author }}
<span
class="commentAuthor"
@click="goToChannel(comment.authorLink)"
>
{{ comment.author }}
</span>
<span class="commentDate">
{{ comment.time }}
</span>
@ -108,8 +112,13 @@
:src="reply.authorThumb"
class="commentThumbnail"
>
<p class="commentAuthor">
{{ reply.author }}
<p class="commentAuthorWrapper">
<span
class="commentAuthor"
@click="goToChannel(reply.authorLink)"
>
{{ reply.author }}
</span>
<span class="commentDate">
{{ reply.time }}
</span>