Skip to content

Commit

Permalink
fix(forms): fix button utilities specificity issue (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
Allyhere authored Jul 15, 2024
1 parent 0cf0f30 commit e5666a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions styles/forms/mod.css
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,8 @@ button[type]:not([type="button"]), input:is([type="submit"],[type="reset"]) {
border-color: currentColor;
}

:is(button, input:is([type="submit"],[type="reset"],[type="button"],[type="image"])):not(:disabled):hover,
:is(button, input:is([type="submit"],[type="reset"],[type="button"],[type="image"])):not(:disabled):active {
:where(button, input:is([type="submit"],[type="reset"],[type="button"],[type="image"])):not(:disabled):hover,
:where(button, input:is([type="submit"],[type="reset"],[type="button"],[type="image"])):not(:disabled):active {
border-color: transparent;
background: var(--accent);
color: var(--light);
Expand Down

0 comments on commit e5666a0

Please sign in to comment.