Skip to content

Commit

Permalink
Update again disabled styles
Browse files Browse the repository at this point in the history
  • Loading branch information
camilovegag committed May 2, 2024
1 parent 3a5e627 commit 4c4c988
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions packages/berlin/src/components/button/Button.styled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ export const StyledButton = styled.button<StyledButtonProps>`
text-transform: uppercase;
&:disabled {
background-color: var(--color-gray);
opacity: 0.5;
cursor: not-allowed;
&:hover {
opacity: 1;
opacity: 0.5;
}
}
Expand Down Expand Up @@ -69,9 +69,10 @@ export const StyledButton = styled.button<StyledButtonProps>`
&:disabled {
background-color: transparent;
user-select: none;
cursor: pointer;
opacity: 0.5;
cursor: default;
&:hover {
opacity: 1;
opacity: 0.5;
}
}
`}
Expand Down

0 comments on commit 4c4c988

Please sign in to comment.