Skip to content

Commit

Permalink
fix: 모바일 멤버 아이콘 크기 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
simeunseo committed Nov 13, 2024
1 parent 5ed2713 commit b4e5400
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/members/main/MemberCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,14 @@ const MemberCard: FC<MemberCardProps> = ({
{imageUrl ? (
<Image className='image' src={imageUrl} width={196} alt='member_image' />
) : (
<IconUser style={{ width: 115, height: 115, color: `${colors.gray400}`, paddingTop: '10px' }} />
<>
<Responsive only='desktop'>
<IconUser style={{ width: 115, height: 115, color: `${colors.gray400}`, paddingTop: '10px' }} />
</Responsive>
<Responsive only='mobile'>
<IconUser style={{ width: 60, height: 60, color: `${colors.gray400}`, paddingTop: '10px' }} />
</Responsive>
</>
)}
</ImageHolder>
</StyledAspectRatio>
Expand Down

0 comments on commit b4e5400

Please sign in to comment.