diff --git a/src/components/input/DropFileInput.tsx b/src/components/input/DropFileInput.tsx index 4e3f11bd..e146a994 100644 --- a/src/components/input/DropFileInput.tsx +++ b/src/components/input/DropFileInput.tsx @@ -106,6 +106,7 @@ const DropFileInput: React.FC = ({ 'aria-disabled': isDisabled, className: cn( 'dropzone w-full px-4 py-2 border border-dashed border-gray-300 rounded cursor-pointer transition-all', + 'hover:border-primary hover:bg-primary/10', { 'border-success bg-success/10': isDragAccept, 'border-error bg-error/10': isDragReject || isError,