Skip to content

Commit

Permalink
fix disabled hover style
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSonOfThomp committed Jan 29, 2024
1 parent c663670 commit 0702bc1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/button/src/Button/Button.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -357,8 +357,8 @@ const disabledStyle: Record<Theme, string> = {
${hoverSelector}, ${activeSelector} {
background-color: ${palette.gray.light2};
border-color: ${palette.gray.light1};
box-shadow: none;
color: ${palette.gray.base};
box-shadow: none;
cursor: not-allowed;
}
Expand All @@ -374,6 +374,7 @@ const disabledStyle: Record<Theme, string> = {
background-color: ${palette.gray.dark3};
border-color: ${palette.gray.dark1};
color: ${palette.gray.dark1};
box-shadow: none;
cursor: not-allowed;
}
Expand Down

0 comments on commit 0702bc1

Please sign in to comment.