FIX: Hashtag CSS class color specificity (#21766)

Followup to eae47d82e2,
we removed some specificity from the hashtag color
CSS classes, but now the color is being overridden
by the base hashtag-cooked.d-icon color. This color
is no longer needed, so we just remove that and
the specificity.
This commit is contained in:
Martin Brennan 2023-05-26 12:16:34 +02:00 committed by GitHub
parent 39d213a023
commit b7229953f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ a.hashtag {
}
}
a.hashtag-cooked {
.hashtag-cooked {
@include mention;
&:visited,
@ -23,7 +23,6 @@ a.hashtag-cooked {
}
.d-icon {
color: var(--primary-high);
font-size: var(--font-down-1);
margin: 0 0.2em 0 0.1em;
}