Skip to content

Commit

Permalink
fix: 아코디언 메뉴 관련 스타일 및 내용 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
klmhyeonwoo committed Nov 27, 2024
1 parent e02f1be commit 0e7522e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
3 changes: 2 additions & 1 deletion public/images/16th/icon/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export * from './popup';
export * from './common';
export * from './blog';
export * from './fab';
export * from './fab';
export * from './recruit'
4 changes: 4 additions & 0 deletions public/images/16th/icon/recruit/arrow_b.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/images/16th/icon/recruit/arrow_w.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions public/images/16th/icon/recruit/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export { default as ic_arrow_black_accordion } from './arrow_b.svg';
export { default as ic_arrow_white_accordion } from './arrow_w.svg'
6 changes: 1 addition & 5 deletions src/components/FAQ/FAQItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,7 @@ export function FAQItem({ isOpen, onClickOpenButton, question, answer }: FAQItem
transition={{ duration: 0.3, ease: 'easeOut' }}
css={theme => arrowContainerCss(theme, isOpen)}
>
<Icon
icon={isOpen ? 'ic_arrow_white' : 'ic_arrow_black'}
direction={isOpen ? 'up' : 'down'}
size={24}
/>
<Icon icon={isOpen ? 'ic_arrow_white_accordion' : 'ic_arrow_black_accordion'} size={24} />
</motion.div>
</motion.div>
<motion.div
Expand Down
2 changes: 1 addition & 1 deletion src/constant/faq.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const FAQS: FAQType[] = [
group: '지원 자격',
question: '관련 경험이 없어도 지원 가능한가요?',
answer:
'관련 직무 경험이 없어도 지원 가능하지만, UI/UX Designer 직군은 지원 시 포트폴리오 제출이 필수입니다.',
'관련 직무 경험이 없어도 지원 가능하지만, Product Designer 직군은 지원 시 포트폴리오 제출이 필수입니다.',
},
{
group: '지원 자격',
Expand Down

0 comments on commit 0e7522e

Please sign in to comment.