From 869ed5859a629c35640414a11f7b9f5e459b087c Mon Sep 17 00:00:00 2001 From: cys4585 Date: Fri, 23 Aug 2024 11:45:01 +0900 Subject: [PATCH 1/3] =?UTF-8?q?=EB=85=B8=ED=8B=B0=20=EC=95=8C=EB=A6=BC=20?= =?UTF-8?q?=EB=AC=B8=EC=A0=9C=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/pages/NotificationPage/NotificationPage.style.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/src/pages/NotificationPage/NotificationPage.style.ts b/frontend/src/pages/NotificationPage/NotificationPage.style.ts index 20902fa7c..8a090abaf 100644 --- a/frontend/src/pages/NotificationPage/NotificationPage.style.ts +++ b/frontend/src/pages/NotificationPage/NotificationPage.style.ts @@ -1,6 +1,10 @@ +import { DISPLAY_MAX_WIDTH } from '@_constants/styles'; import { css, Theme } from '@emotion/react'; export const ModalContent = (props: { theme: Theme }) => css` ${props.theme.typography.s1} - margin: 5rem; + width: 100vw; + max-width: calc(${DISPLAY_MAX_WIDTH} * 0.8); + margin-bottom: 4rem; + padding-right: 60px; `; From 7223a36a5e3346cc5df5d7e75a687f0ada0e08fe Mon Sep 17 00:00:00 2001 From: cys4585 Date: Fri, 23 Aug 2024 11:46:50 +0900 Subject: [PATCH 2/3] =?UTF-8?q?fix:=20=EB=AA=A8=EC=9E=84=20=EB=A7=8C?= =?UTF-8?q?=EB=93=A4=EA=B8=B0=20=EC=9E=90=EB=8F=99=20=ED=8F=AC=EC=BB=A4?= =?UTF-8?q?=EC=8B=B1=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/pages/MoimCreationPage/Steps/DescriptionStep.tsx | 2 +- frontend/src/pages/MoimCreationPage/Steps/MaxPeopleStep.tsx | 2 +- frontend/src/pages/MoimCreationPage/Steps/PlaceStep.tsx | 2 +- frontend/src/pages/MoimCreationPage/Steps/TitleStep.tsx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/pages/MoimCreationPage/Steps/DescriptionStep.tsx b/frontend/src/pages/MoimCreationPage/Steps/DescriptionStep.tsx index c80f4f26e..41182c389 100644 --- a/frontend/src/pages/MoimCreationPage/Steps/DescriptionStep.tsx +++ b/frontend/src/pages/MoimCreationPage/Steps/DescriptionStep.tsx @@ -18,7 +18,7 @@ export default function DescriptionStep(props: DescriptionStepProps) { useEffect(() => { if (inputRef.current) { - inputRef.current.focus(); + // inputRef.current.focus(); } }, []); diff --git a/frontend/src/pages/MoimCreationPage/Steps/MaxPeopleStep.tsx b/frontend/src/pages/MoimCreationPage/Steps/MaxPeopleStep.tsx index bca1f7a93..7f1e866f3 100644 --- a/frontend/src/pages/MoimCreationPage/Steps/MaxPeopleStep.tsx +++ b/frontend/src/pages/MoimCreationPage/Steps/MaxPeopleStep.tsx @@ -19,7 +19,7 @@ export default function MaxPeopleStep(props: MaxPeopleStepProps) { useEffect(() => { if (inputRef.current) { - inputRef.current.focus(); + // inputRef.current.focus(); } }, []); diff --git a/frontend/src/pages/MoimCreationPage/Steps/PlaceStep.tsx b/frontend/src/pages/MoimCreationPage/Steps/PlaceStep.tsx index 2a3f773dc..58f269874 100644 --- a/frontend/src/pages/MoimCreationPage/Steps/PlaceStep.tsx +++ b/frontend/src/pages/MoimCreationPage/Steps/PlaceStep.tsx @@ -20,7 +20,7 @@ export default function PlaceStep(props: PlaceStepProps) { useEffect(() => { if (inputRef.current) { - inputRef.current.focus(); + // inputRef.current.focus(); } }, []); return ( diff --git a/frontend/src/pages/MoimCreationPage/Steps/TitleStep.tsx b/frontend/src/pages/MoimCreationPage/Steps/TitleStep.tsx index 51943ac86..01e9252dc 100644 --- a/frontend/src/pages/MoimCreationPage/Steps/TitleStep.tsx +++ b/frontend/src/pages/MoimCreationPage/Steps/TitleStep.tsx @@ -20,7 +20,7 @@ export default function TitleStep(props: TitleProps) { useEffect(() => { if (inputRef.current) { - inputRef.current.focus(); + // inputRef.current.focus(); } }, []); From 25c354c0417889a773dfa6043dab4f7b7cde2084 Mon Sep 17 00:00:00 2001 From: cys4585 Date: Fri, 23 Aug 2024 11:49:17 +0900 Subject: [PATCH 3/3] =?UTF-8?q?=EB=B8=8C=EB=9D=BC=EC=9A=B0=EC=A0=80=20?= =?UTF-8?q?=EC=9E=90=EB=8F=99=20=EC=BA=90=EC=8B=9C=20=EB=A7=89=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/index.html b/frontend/src/index.html index dba56fbe7..ded8d1869 100644 --- a/frontend/src/index.html +++ b/frontend/src/index.html @@ -16,6 +16,7 @@ +