diff --git a/src/components/org/OrgAdmin/RecruitSection/Header.tsx b/src/components/org/OrgAdmin/RecruitSection/Header.tsx index 1f5321b..50a6bba 100644 --- a/src/components/org/OrgAdmin/RecruitSection/Header.tsx +++ b/src/components/org/OrgAdmin/RecruitSection/Header.tsx @@ -1,7 +1,14 @@ import { useFormContext } from 'react-hook-form'; +import RequiredIcon from '../assets/RequiredIcon'; import MyDropzone from '../MyDropzone'; -import { StDescription, StTitle, StTitleWrapper, StWrapper } from '../style'; +import { + StDescription, + StLabel, + StTitle, + StTitleWrapper, + StWrapper, +} from '../style'; import { StLabelWrapper } from './style'; const Header = () => { @@ -10,8 +17,11 @@ const Header = () => { return ( - 헤더 - 이미지 + 지원하기탭 헤더 + + 이미지 + + 이미지는 1920*580 크기로 올려주세요. ‘지원하기’탭 가장 상단에 보여지는 이미지예요. diff --git a/src/components/org/OrgAdmin/RecruitSection/style.ts b/src/components/org/OrgAdmin/RecruitSection/style.ts index 21466d1..2e8c80b 100644 --- a/src/components/org/OrgAdmin/RecruitSection/style.ts +++ b/src/components/org/OrgAdmin/RecruitSection/style.ts @@ -1,9 +1,9 @@ import styled from '@emotion/styled'; -import { StLabel } from '../style'; - -export const StLabelWrapper = styled(StLabel)` - display: inline-block; +export const StLabelWrapper = styled.div` + display: flex; + gap: 4px; + align-items: center; margin: 30px 0px 8px; `;