Fix hover colors on buttons to show/hide content

We were setting the color to be the same as links, but forgot to do the
same on hover. Using the `link` mixin solves the issue.
This commit is contained in:
Javi Martín
2022-10-09 21:57:54 +02:00
parent f0badb82f2
commit 5d37220282
2 changed files with 2 additions and 4 deletions

View File

@@ -29,8 +29,7 @@
> [aria-expanded] { > [aria-expanded] {
@include xy-gutters; @include xy-gutters;
color: $link; @include link;
cursor: pointer;
margin-top: $line-height; margin-top: $line-height;
margin-bottom: $line-height; margin-bottom: $line-height;
max-width: max-content; max-width: max-content;

View File

@@ -2359,8 +2359,7 @@ table {
} }
.add-related-content { .add-related-content {
color: $link; @include link;
cursor: pointer;
display: block; display: block;
margin-bottom: $line-height; margin-bottom: $line-height;