Skip to content

Commit

Permalink
๐Ÿ“ Chore(#47): ์งˆ๋ฌธ ์ž…๋ ฅ input ๋ฐ˜์‘ํ˜• ๋””์ž์ธ์— ๋งž์ถฐ ๋„ˆ๋น„ ์กฐ์ • ์ฒ˜๋ฆฌ
Browse files Browse the repository at this point in the history
  • Loading branch information
sscoderati committed Dec 4, 2023
1 parent c3e758b commit 08dd0f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/(steady)/steady/create/questions/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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) =>
Expand Down
2 changes: 1 addition & 1 deletion src/app/(steady)/steady/edit/questions/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 08dd0f0

Please sign in to comment.