Skip to content

Commit 003f2eb

Browse files
authored
refactor : RecruitSection 좌우 블록 모바일 환경에서 hidden 되도록 수정 (#83)
1 parent fff6da6 commit 003f2eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/web/src/components/mainpage/recruit/RecruitSection.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ export default function RecruitSection() {
1414
<div className='absolute inset-0 flex transform-gpu items-center'>
1515
<div className='flex w-full justify-between'>
1616
<m.div initial={{ x: '-100%' }} animate={{ x: isInView ? '0%' : '-100%' }} transition={{ bounce: 0 }}>
17-
<LeftFrame className='h-[57.2rem]' />
17+
<LeftFrame className='hidden h-[57.2rem] md:block' />
1818
</m.div>
1919
<m.div initial={{ x: '100%' }} animate={{ x: isInView ? '0%' : '100%' }} transition={{ bounce: 0 }}>
20-
<RightFrame className='h-[53.5rem] translate-x-[1.5rem] transform' />
20+
<RightFrame className='hidden h-[53.5rem] translate-x-[1.5rem] transform md:block' />
2121
</m.div>
2222
</div>
2323
</div>

0 commit comments

Comments
 (0)