Skip to content

Commit

Permalink
fix: 프로필 자기소개 길 시 이미지 찌그러지는 현상 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
wokbjso committed Sep 13, 2024
1 parent 2a5ed6e commit 3beabd3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion features/profile/components/organisms/profile-container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ export function ProfileContainer({
src={profileData.profileImageUrl}
fill
sizes="10vw"
className={css({ borderRadius: 'full', objectFit: 'cover' })}
className={css({
borderRadius: 'full',
objectFit: 'cover',
})}
/>
</div>
<div>
Expand Down Expand Up @@ -52,6 +55,7 @@ const imageLayoutStyles = css({
width: '60px',
height: '60px',
position: 'relative',
flexShrink: 0,
});

const inforWrapper = flex({
Expand Down

0 comments on commit 3beabd3

Please sign in to comment.