Skip to content

Commit d888440

Browse files
committed
fix(home): 홈페이지 메인 내 에서만 최소높이 설정하여 프로필 사진 높이 무너짐 방지
1 parent 0615635 commit d888440

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/features/minihome/home/HomePage.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,10 @@ export default function HomePage({
234234
<div className="mr-3 flex h-full w-1/3 flex-col items-center @2xl:justify-center">
235235
{/* 프로필 이미지 */}
236236

237-
<Avatar src={avatarUrl} className="h-32 w-32 @2xl:h-64 @2xl:w-64" />
237+
<Avatar
238+
src={avatarUrl}
239+
className="h-32 w-32 min-w-[128px] shrink-0 @2xl:h-64 @2xl:w-64 @2xl:min-w-[256px]"
240+
/>
238241

239242
{/* 이름 */}
240243
<p className="mt-4 text-lg text-[#342b4e]">{nickname}</p>

0 commit comments

Comments
 (0)