diff --git a/src/components/molecules/DialogWithHeader.tsx b/src/components/molecules/DialogWithHeader.tsx index 4812f748..8a74d78c 100644 --- a/src/components/molecules/DialogWithHeader.tsx +++ b/src/components/molecules/DialogWithHeader.tsx @@ -25,6 +25,9 @@ const useStyles = makeStyles((theme: Theme) => justifyContent: 'space-between', alignItems: 'center', }, + scroll: { + overflowY: 'scroll' + }, close: { color: shadowColor, }, @@ -46,7 +49,9 @@ const DialogWithHeader: FC = ({ onClose, isShowing, title, fullWidth, ch - {children} + + {children} + ); };