From 64e5ae5388c3ce501cc519143361e40ecf18df99 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Tue, 29 Oct 2024 04:55:32 +0530 Subject: [PATCH] feat: apply border radius to generic modal --- src/components/atoms/GenericModal.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/atoms/GenericModal.tsx b/src/components/atoms/GenericModal.tsx index 96c2782f..a8d3c3e8 100644 --- a/src/components/atoms/GenericModal.tsx +++ b/src/components/atoms/GenericModal.tsx @@ -15,7 +15,7 @@ export const GenericModal: FC = ( return ( { }} > - + {canBeClosed ? @@ -42,4 +42,5 @@ const defaultModalStyle = { overflow: 'scroll', padding: '5px 25px 10px 25px', zIndex: 3147483647, + borderRadius: 4, // Added borderRadius for rounded corners }; \ No newline at end of file