Skip to content

Commit

Permalink
fix(checkbox): make disabled checkbox border transparent
Browse files Browse the repository at this point in the history
  • Loading branch information
Martí Malek committed Jun 6, 2024
1 parent 5763be6 commit 52b0ab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Checkbox/components/Checkmark.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const Checkmark = styled.input<CheckmarkProps>`
&:disabled {
cursor: not-allowed;
background-color: ${Colors.AUTHENTIC_BLUE_200};
box-shadow: inset 0 0 0 0.125rem ${Colors.AUTHENTIC_BLUE_50};
box-shadow: inset 0 0 0 0.125rem transparent;
&:hover {
box-shadow: inset 0 0 0 0.125rem ${Colors.AUTHENTIC_BLUE_50};
Expand Down

0 comments on commit 52b0ab9

Please sign in to comment.