Skip to content

Commit

Permalink
fix: update unchecked checkbox border color
Browse files Browse the repository at this point in the history
  • Loading branch information
akhlopiachyi committed Jul 30, 2024
1 parent 0891ff0 commit da7ec29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DisclaimerModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const DisclaimerModal: FC<DisclaimerModalProps> = ({ handleConfirmModal }

const checkboxCx = useMemo(() => {
return classNames('flex-none h-[22px] w-[22px] overflow-hidden border rounded-md cursor-pointer', {
'border-[#1B1D23]': !checkboxChecked,
'border-[#868991]': !checkboxChecked,
'bg-gradient-green border-transparent': checkboxChecked,
});
}, [checkboxChecked]);
Expand Down

0 comments on commit da7ec29

Please sign in to comment.