Skip to content

Commit

Permalink
Merge pull request #133 from mash-up-kr/release/v0.2.0
Browse files Browse the repository at this point in the history
Main Release/v0.2.0
  • Loading branch information
minsour authored Mar 15, 2022
2 parents ef1a7ce + d2e6405 commit 94badbf
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,25 @@ export const ApplicationFormPreviewModal = ({
required
disabled
/>
<Styled.Description>이메일 수정은 마이페이지에서 가능합니다.</Styled.Description>
<Styled.PrivacyInput
$size={InputSize.md}
label="생년월일"
placeholder="생년월일을 입력해주세요 ex) 2000-01-15"
required
/>
<Styled.PrivacyInput
$size={InputSize.md}
label="거주지역"
placeholder="거주지역을 입력해주세요 ex) 서울시 강남구"
required
/>
<Styled.PrivacyInput
$size={InputSize.md}
label="소속"
placeholder="소속을 입력해주세요 ex) 회사, 학교, 동아리, 취준생... "
required
/>

<Styled.CategoryHeadline>질문목록</Styled.CategoryHeadline>
{questions.map((question, index) => {
const readableIndex = index + 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,6 @@ export const MaxContentLength = styled.span`
`}
`;

export const Description = styled.span`
${({ theme }) => css`
${theme.fonts.regular15};
display: inline-block;
margin-top: 0.6rem;
color: ${theme.colors.gray60};
`}
`;

export const PrivacyCheckBox = styled(Checkbox)`
margin-top: 3.6rem;
`;
Expand Down

0 comments on commit 94badbf

Please sign in to comment.