From c8f51b758a978bbc8e775c123a1c4c529df94ad3 Mon Sep 17 00:00:00 2001 From: Nevo David Date: Tue, 12 Mar 2024 00:17:57 +0700 Subject: [PATCH] feat: modal --- apps/frontend/src/components/launches/calendar.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/frontend/src/components/launches/calendar.tsx b/apps/frontend/src/components/launches/calendar.tsx index 5edd098c..fbfe6d19 100644 --- a/apps/frontend/src/components/launches/calendar.tsx +++ b/apps/frontend/src/components/launches/calendar.tsx @@ -265,7 +265,7 @@ const CalendarColumnRender: FC<{ day: number; hour: string }> = (props) => { closeOnEscape: false, withCloseButton: false, classNames: { - modal: 'bg-transparent text-white !w-[auto]', + modal: 'bg-transparent text-white', }, children: ( @@ -277,7 +277,7 @@ const CalendarColumnRender: FC<{ day: number; hour: string }> = (props) => { /> ), - size: 'dynamic', + size: '80%', title: ``, }); }, @@ -293,7 +293,7 @@ const CalendarColumnRender: FC<{ day: number; hour: string }> = (props) => { modal: 'bg-transparent text-white', }, children: , - size: '80%' + size: '80%', // title: `Adding posts for ${getDate.format('DD/MM/YYYY HH:mm')}`, }); }, []);