From 9b8b51cb9129d5e701181f51417e3ae9fcd408a3 Mon Sep 17 00:00:00 2001 From: Camilo Oviedo Date: Wed, 14 Aug 2024 16:29:38 +1000 Subject: [PATCH] fix: Enhance visual feedback on file drag-and-drop --- packages/webapp/src/components/Dropzone/Dropzone.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/webapp/src/components/Dropzone/Dropzone.tsx b/packages/webapp/src/components/Dropzone/Dropzone.tsx index e885407b5..1c0914385 100644 --- a/packages/webapp/src/components/Dropzone/Dropzone.tsx +++ b/packages/webapp/src/components/Dropzone/Dropzone.tsx @@ -28,9 +28,9 @@ export type DropzoneCssVariables = { }; export interface DropzoneProps { - /** Key of `theme.colors` or any valid CSS color to set colors of `Dropzone.Accept`, `theme.primaryColor` by default */ + /** Key of `theme.colors` or any valid CSS color to set colors of `Dropzone.Accept`, `theme.primaryColor` by default */ acceptColor?: MantineColor; - + /** Key of `theme.colors` or any valid CSS color to set colors of `Dropzone.Reject`, `'red'` by default */ rejectColor?: MantineColor;