Skip to content

Commit

Permalink
fix: 커뮤니티페이지 슬라이드 이미지 크기 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
banhogu committed May 28, 2024
1 parent 7a2116e commit 8a10421
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/community/shared/PostItemImageItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from 'react';
const PostItemImageItem = ({ image, count }: { image: string; count: number }) => {
return (
<div className={`${count > 1 ? 'w-[260px] h-[180px] ' : 'w-[360px] h-[180px] z-1'}`}>
<img src={image} alt="" className="rounded-sm object-scale-down w-full h-full" />
<img src={image} alt="" className="rounded-sm object-cover w-full h-full" />
</div>
);
};
Expand Down

0 comments on commit 8a10421

Please sign in to comment.