Commit a93cf3d9 authored by Jiwon Yoon's avatar Jiwon Yoon
Browse files

survey modify title, comment responsive css 변경

parent 38343547
...@@ -94,7 +94,7 @@ export const ModifySurvey = ({ surveyData, callApi }: Props) => { ...@@ -94,7 +94,7 @@ export const ModifySurvey = ({ surveyData, callApi }: Props) => {
<input <input
type="text" type="text"
name="title" name="title"
className="font-bold text-4xl text-center m-2 border-b-2" className="w-11/12 md:w-1/2 font-bold text-4xl text-center m-2 border-b-2"
placeholder="설문지 제목" placeholder="설문지 제목"
autoComplete="on" autoComplete="on"
value={survey.title} value={survey.title}
...@@ -103,7 +103,7 @@ export const ModifySurvey = ({ surveyData, callApi }: Props) => { ...@@ -103,7 +103,7 @@ export const ModifySurvey = ({ surveyData, callApi }: Props) => {
<input <input
type="text" type="text"
name="comment" name="comment"
className="font-bold text-1xl text-center m-2 border-b-2 resize-none" className="w-11/12 md:w-1/2 font-bold text-1xl text-center m-2 border-b-2 resize-none"
placeholder="설문조사에 대한 설명을 입력해주세요" placeholder="설문조사에 대한 설명을 입력해주세요"
autoComplete="on" autoComplete="on"
size={50} size={50}
......
...@@ -10,7 +10,7 @@ export const SurveyComment = () => { ...@@ -10,7 +10,7 @@ export const SurveyComment = () => {
<input <input
type="text" type="text"
name="comment" name="comment"
className="font-bold text-1xl text-center m-2 border-b-2 resize-none" className="w-11/12 md:w-1/2 font-bold text-1xl text-center m-2 border-b-2 resize-none"
placeholder="설문조사에 대한 설명을 입력해주세요" placeholder="설문조사에 대한 설명을 입력해주세요"
autoComplete="on" autoComplete="on"
size={50} size={50}
......
...@@ -44,7 +44,7 @@ export const SurveyTitle = ({ text, handleTitle }: Props) => { ...@@ -44,7 +44,7 @@ export const SurveyTitle = ({ text, handleTitle }: Props) => {
<input <input
type="text" type="text"
name="title" name="title"
className="font-bold text-4xl text-center m-2 border-b-2" className="w-11/12 md:w-1/2 font-bold text-4xl text-center m-2 border-b-2"
placeholder="설문지 제목" placeholder="설문지 제목"
autoComplete="on" autoComplete="on"
value={title} value={title}
......
...@@ -50,7 +50,7 @@ export const SurveyTitleAndComment = ({ ...@@ -50,7 +50,7 @@ export const SurveyTitleAndComment = ({
<input <input
type="text" type="text"
name="title" name="title"
className="font-bold text-4xl text-center m-2 border-b-2" className="w-11/12 md:w-1/2 font-bold text-4xl text-center m-2 border-b-2"
placeholder="설문지 제목" placeholder="설문지 제목"
autoComplete="on" autoComplete="on"
value={state.title} value={state.title}
...@@ -60,7 +60,7 @@ export const SurveyTitleAndComment = ({ ...@@ -60,7 +60,7 @@ export const SurveyTitleAndComment = ({
<input <input
type="text" type="text"
name="comment" name="comment"
className="font-bold text-1xl text-center m-2 border-b-2 resize-none" className="w-11/12 md:w-1/2 font-bold text-1xl text-center m-2 border-b-2 resize-none"
placeholder="설문조사에 대한 설명을 입력해주세요" placeholder="설문조사에 대한 설명을 입력해주세요"
autoComplete="on" autoComplete="on"
size={50} size={50}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment