diff --git a/src/components/form/Checkbox.tsx b/src/components/form/Checkbox.tsx index aa87e165..ad9c4ab8 100644 --- a/src/components/form/Checkbox.tsx +++ b/src/components/form/Checkbox.tsx @@ -14,14 +14,18 @@ export const Checkbox = forwardRef( ref={ref} type="checkbox" className={`h-4 w-4 rounded border-transparent bg-orange-100 text-orange-500 focus:border-transparent focus:outline-none focus:ring-2 focus:ring-orange-500 ${ - disabled ? "cursor-not-allowed text-orange-200" : "" + disabled ? "cursor-not-allowed bg-orange-50 text-orange-200" : "" }`} disabled={disabled} {...rest} />
-