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; cursor: pointer;
} }
.commentAuthor { .commentAuthorWrapper {
font-weight: bold; font-weight: bold;
font-size: 14px; font-size: 14px;
margin-left: 68px; margin-left: 68px;
margin-top: 0px; margin-top: 0px;
}
.commentAuthor {
cursor: pointer; cursor: pointer;
} }

View File

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