diff --git a/frontend/src/component/project/Project/CreateProject/NewCreateProjectForm/CreateProjectDialog.tsx b/frontend/src/component/project/Project/CreateProject/NewCreateProjectForm/CreateProjectDialog.tsx index 05d747f3a5..87c86c4056 100644 --- a/frontend/src/component/project/Project/CreateProject/NewCreateProjectForm/CreateProjectDialog.tsx +++ b/frontend/src/component/project/Project/CreateProject/NewCreateProjectForm/CreateProjectDialog.tsx @@ -21,7 +21,7 @@ interface ICreateProjectDialogProps { onClose: () => void; } -const StyledDialog = styled(Dialog)(({ theme, maxWidth }) => ({ +const StyledDialog = styled(Dialog)(({ theme }) => ({ '& .MuiDialog-paper': { borderRadius: theme.shape.borderRadiusLarge, maxWidth: theme.spacing(170), @@ -29,6 +29,9 @@ const StyledDialog = styled(Dialog)(({ theme, maxWidth }) => ({ backgroundColor: 'transparent', }, padding: 0, + '& .MuiPaper-root > section': { + overflowX: 'hidden', + }, })); const CREATE_PROJECT_BTN = 'CREATE_PROJECT_BTN';