diff --git a/app/styles/shared/buttons.module.css b/app/styles/shared/buttons.module.css index 536eb92d7a0..c3af8ed4bf3 100644 --- a/app/styles/shared/buttons.module.css +++ b/app/styles/shared/buttons.module.css @@ -34,7 +34,11 @@ cursor: pointer; &:hover, &:active, &:visited { - color: var(--text-color); + /* + * This is using `important` to override the `a:hover` declaration which + * appears to have higher specificity than the `button:hover` declaration. + */ + color: var(--text-color) !important; } img, svg {