Skip to content

Commit

Permalink
fix(tag): fix disabled state (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrsavk committed Apr 30, 2020
1 parent 5704c71 commit a622101
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/tag/src/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@
}

.component {
&:active {
&:active:not(:disabled) {
background-color: var(--tag-background-color-active);
color: var(--tag-text-color);
}

&:hover {
&:hover:not(:disabled) {
border: var(--tag-border-width) var(--tag-border-style) var(--tag-border-color-hover);
}

Expand Down

0 comments on commit a622101

Please sign in to comment.