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);