Skip to content

Commit 94badbf

Browse files
authored
Merge pull request #133 from mash-up-kr/release/v0.2.0
Main Release/v0.2.0
2 parents ef1a7ce + d2e6405 commit 94badbf

File tree

2 files changed

+19
-11
lines changed

2 files changed

+19
-11
lines changed

src/components/ApplicationForm/ApplicationFormPreview/ApplicationFormPreview.component.tsx

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,25 @@ export const ApplicationFormPreviewModal = ({
5656
required
5757
disabled
5858
/>
59-
<Styled.Description>이메일 수정은 마이페이지에서 가능합니다.</Styled.Description>
59+
<Styled.PrivacyInput
60+
$size={InputSize.md}
61+
label="생년월일"
62+
placeholder="생년월일을 입력해주세요 ex) 2000-01-15"
63+
required
64+
/>
65+
<Styled.PrivacyInput
66+
$size={InputSize.md}
67+
label="거주지역"
68+
placeholder="거주지역을 입력해주세요 ex) 서울시 강남구"
69+
required
70+
/>
71+
<Styled.PrivacyInput
72+
$size={InputSize.md}
73+
label="소속"
74+
placeholder="소속을 입력해주세요 ex) 회사, 학교, 동아리, 취준생... "
75+
required
76+
/>
77+
6078
<Styled.CategoryHeadline>질문목록</Styled.CategoryHeadline>
6179
{questions.map((question, index) => {
6280
const readableIndex = index + 1;

src/components/ApplicationForm/ApplicationFormPreview/ApplicationFormPreview.styled.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -56,16 +56,6 @@ export const MaxContentLength = styled.span`
5656
`}
5757
`;
5858

59-
export const Description = styled.span`
60-
${({ theme }) => css`
61-
${theme.fonts.regular15};
62-
63-
display: inline-block;
64-
margin-top: 0.6rem;
65-
color: ${theme.colors.gray60};
66-
`}
67-
`;
68-
6959
export const PrivacyCheckBox = styled(Checkbox)`
7060
margin-top: 3.6rem;
7161
`;

0 commit comments

Comments
 (0)