Skip to content

Commit

Permalink
add more specificity to CSS selectors causing a btn color bug
Browse files Browse the repository at this point in the history
  • Loading branch information
rachidatecs committed Oct 18, 2023
1 parent 02b8f82 commit 1791db4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/registrar/assets/sass/_theme/_buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ a.breadcrumb__back {
}
}

a.usa-button {
a.usa-button:not(.usa-button--unstyled, .usa-button--outline) {
text-decoration: none;
color: color('white');
}

a.usa-button:visited,
a.usa-button:hover,
a.usa-button:focus,
a.usa-button:active {
a.usa-button:not(.usa-button--unstyled, .usa-button--outline):visited,
a.usa-button:not(.usa-button--unstyled, .usa-button--outline):hover,
a.usa-button:not(.usa-button--unstyled, .usa-button--outline):focus,
a.usa-button:not(.usa-button--unstyled, .usa-button--outline):active {
color: color('white');
}

Expand Down

0 comments on commit 1791db4

Please sign in to comment.