Fixed wrongly sized clickable link to comment authors. Added link to reply author's channel (#1298)
This commit is contained in:
parent
fce8e25e46
commit
67218ab5f1
|
@ -37,11 +37,15 @@
|
|||
cursor: pointer;
|
||||
}
|
||||
|
||||
.commentAuthor {
|
||||
.commentAuthorWrapper {
|
||||
font-weight: bold;
|
||||
font-size: 14px;
|
||||
margin-left: 68px;
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
|
||||
.commentAuthor {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
|
|
@ -48,10 +48,14 @@
|
|||
@click="goToChannel(comment.authorLink)"
|
||||
>
|
||||
<p
|
||||
class="commentAuthorWrapper"
|
||||
>
|
||||
<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">
|
||||
<p class="commentAuthorWrapper">
|
||||
<span
|
||||
class="commentAuthor"
|
||||
@click="goToChannel(reply.authorLink)"
|
||||
>
|
||||
{{ reply.author }}
|
||||
</span>
|
||||
<span class="commentDate">
|
||||
{{ reply.time }}
|
||||
</span>
|
||||
|
|
Loading…
Reference in New Issue