Skip to content
Prev Previous commit
Next Next commit
Update Author Background Color to be based on --secondary-card-bg-col…
…or instead of --scrollbar-color

This unneeded dependency on the scrollbar color here resulted in the Author Background text blending into its background on the new Hot Pink theme. This change does not tangibly affect any other theme, whose scrollbar colors are incidentally similar to the secondary-card-bg-color, as this color is already being used for tags on the Channel About tab.
  • Loading branch information
kommunarr committed Aug 24, 2023
commit db67d71fcb4d274962b21d5f6ab18724bf5efb34
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,17 @@
text-overflow: ellipsis;
}

.commentOwner {
background-color: var(--scrollbar-color);
border-radius: 10px;
padding: 0 10px;
}

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

.commentOwner {
background-color: var(--secondary-card-bg-color);
border-radius: 10px;
padding: 0 10px;
}

.commentText {
white-space: pre-wrap;
font-size: 14px;
Expand Down