From 08dd0f0796c117f592c0cd26e5cbf0e30f2605f1 Mon Sep 17 00:00:00 2001 From: sscoderati Date: Mon, 4 Dec 2023 17:37:00 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Chore(#47):=20=EC=A7=88=EB=AC=B8?= =?UTF-8?q?=20=EC=9E=85=EB=A0=A5=20input=20=EB=B0=98=EC=9D=91=ED=98=95=20?= =?UTF-8?q?=EB=94=94=EC=9E=90=EC=9D=B8=EC=97=90=20=EB=A7=9E=EC=B6=B0=20?= =?UTF-8?q?=EB=84=88=EB=B9=84=20=EC=A1=B0=EC=A0=95=20=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/(steady)/steady/create/questions/page.tsx | 2 +- src/app/(steady)/steady/edit/questions/[id]/page.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/(steady)/steady/create/questions/page.tsx b/src/app/(steady)/steady/create/questions/page.tsx index b3e59ff3..dd96824e 100644 --- a/src/app/(steady)/steady/create/questions/page.tsx +++ b/src/app/(steady)/steady/create/questions/page.tsx @@ -230,7 +230,7 @@ const CreateQuestionsPage = () => { placeholder="질문을 입력해 주세요." value={item.question} className={cn( - "h-50 text-20 font-semibold text-st-black outline-none", + "h-50 text-20 font-semibold text-st-black outline-none max-sm:w-250 sm:w-300 md:w-400 lg:w-600 xl:w-750", )} onChange={(event) => { setQuestion((prev) => diff --git a/src/app/(steady)/steady/edit/questions/[id]/page.tsx b/src/app/(steady)/steady/edit/questions/[id]/page.tsx index 9b3cd7ef..9c1e1d41 100644 --- a/src/app/(steady)/steady/edit/questions/[id]/page.tsx +++ b/src/app/(steady)/steady/edit/questions/[id]/page.tsx @@ -246,7 +246,7 @@ const EditQuestionsPage = ({ params }: { params: { id: string } }) => { placeholder="질문을 입력해 주세요." value={item.question} className={cn( - `h-50 text-20 font-semibold text-st-black outline-none`, + `h-50 w-auto text-20 font-semibold text-st-black outline-none max-sm:w-250 sm:w-300 md:w-400 lg:w-600 xl:w-750`, )} onChange={(event) => { handleInputQuestion(event, item.sequence);