Skip to content

Commit

Permalink
Fix styling of the comment author text (#3012)
Browse files Browse the repository at this point in the history
  • Loading branch information
absidue authored Dec 31, 2022
1 parent 8a30e32 commit 5d1f465
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
height: 60px;
border-radius: 200px 200px 200px 200px;
-webkit-border-radius: 200px 200px 200px 200px;
cursor: pointer;
}

.commentAuthorWrapper {
Expand All @@ -53,7 +52,8 @@
}

.commentAuthor {
cursor: pointer;
color: inherit;
text-decoration: none;
}

.commentText {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,18 +77,15 @@
<p
class="commentAuthorWrapper"
>
<span
<router-link
class="commentAuthor"
:class="{
commentOwner: comment.isOwner
}"
:to="`/channel/${comment.authorLink}`"
>
<router-link
:to="`/channel/${comment.authorLink}`"
>
{{ comment.author }}
</router-link>
</span>
{{ comment.author }}
</router-link>
<img
v-if="comment.isMember"
:src="comment.memberIconUrl"
Expand Down

0 comments on commit 5d1f465

Please sign in to comment.