Skip to content

Commit

Permalink
fix(category): 🐛 fix incorrect hover text color for visited new category
Browse files Browse the repository at this point in the history
Closes: #933
  • Loading branch information
alistair3149 committed Aug 17, 2024
1 parent 3dbf41d commit fd0346e
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
border: var( --border-width-base ) solid var( --border-color-interactive );
border-radius: var( --border-radius-pill );

&:hover {
&:hover,
&:hover:visited {
color: var( --color-inverted-primary );
background-color: var( --color-progressive--hover );
}
Expand All @@ -48,7 +49,9 @@
&.new {
border-style: dashed;

&:hover {
&:hover,
&:hover:visited {
color: var( --color-inverted-fixed );
background-color: var( --color-destructive--hover );
}
}
Expand Down

0 comments on commit fd0346e

Please sign in to comment.