From a4013d737846134574cd9bdadf76c7369b59719a Mon Sep 17 00:00:00 2001 From: lawvs <18554747+lawvs@users.noreply.github.com> Date: Fri, 5 Aug 2022 15:43:53 +0800 Subject: [PATCH] chore: add overflow scroll --- libs/components/editor-core/src/ref-page/ModalPage.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/components/editor-core/src/ref-page/ModalPage.tsx b/libs/components/editor-core/src/ref-page/ModalPage.tsx index 0fb1b732f0..276d5984d6 100644 --- a/libs/components/editor-core/src/ref-page/ModalPage.tsx +++ b/libs/components/editor-core/src/ref-page/ModalPage.tsx @@ -12,6 +12,7 @@ const Dialog = styled('div')({ boxShadow: '0px 1px 10px rgba(152, 172, 189, 0.6)', borderRadius: '10px', padding: '72px 120px', + overflow: 'scroll', }); const Modal = ({ open, children }: { open: boolean; children?: ReactNode }) => {