Skip to content

Commit

Permalink
fix: disabled button (#6731)
Browse files Browse the repository at this point in the history
  • Loading branch information
AugustinMauroy committed May 23, 2024
1 parent 5d5b626 commit 0f5dbc9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/Common/Button/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
text-white
dark:text-neutral-200;

&:hover {
&:hover:not([aria-disabled='true']) {
@apply bg-neutral-800;
}

Expand All @@ -44,7 +44,7 @@
text-white
shadow-sm;

&:hover {
&:hover:not([aria-disabled='true']) {
@apply border-green-700
bg-green-700
text-white;
Expand All @@ -66,7 +66,7 @@
text-neutral-800
dark:text-neutral-200;

&:hover {
&:hover:not([aria-disabled='true']) {
@apply bg-neutral-100
text-neutral-800
dark:bg-neutral-900
Expand Down Expand Up @@ -127,7 +127,7 @@
@apply opacity-50;
}

&:hover {
&:hover:not([aria-disabled='true']) {
@apply bg-green-600/20;
}

Expand Down

0 comments on commit 0f5dbc9

Please sign in to comment.