Skip to content

Commit

Permalink
cleanup: Small comments style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
GabsEdits committed May 4, 2024
1 parent b5f0d00 commit 777959b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions components/MastodonComments.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ customElements.define("oom-comments", Comments);
oom-comments {
display: block;
padding: 2em;
a:hover {
transform: none;
}
}
oom-comments ul {
list-style: none;
Expand Down Expand Up @@ -58,10 +62,10 @@ oom-comments .comment-author {
border-radius: 50%;
width: 20px;
height: 20px;
color: var(--color-text-secondary);
color: var(--color-accent);
}
oom-comments .comment-user:hover .comment-username {
text-decoration: underline;
text-decoration: underline var(--color-accent);
}
oom-comments .comment-username {
margin-right: 0.5em;
Expand All @@ -81,7 +85,7 @@ oom-comments .comment-address {
margin-top: 0.25em;
}
oom-comments .comment-address:hover {
text-decoration: underline;
text-decoration: underline var(--color-accent);
}
oom-comments .comment-body {
margin-top: 0.5em;
Expand All @@ -100,6 +104,6 @@ oom-comments .comment-counts > span {
display: flex;
align-items: center;
column-gap: 0.3em;
color: var(--color-text-secondary);
color: var(--color-accent);
}
</style>

0 comments on commit 777959b

Please sign in to comment.