From 6a070e39da7775d137ecc066ee4580275b7a3963 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Tue, 4 Nov 2025 15:54:13 +0700 Subject: [PATCH] chore(FE-188): updateDropFileInput component --- src/components/input/DropFileInput.tsx | 1 + 1 file changed, 1 insertion(+) 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,