Skip to content

Commit

Permalink
Merge pull request #294 from TripInfoWeb/dev_gathering
Browse files Browse the repository at this point in the history
fix: 반응형 변형 문제 수정
  • Loading branch information
ssssksss authored Sep 12, 2024
2 parents a85350d + d683eac commit d8fbe2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/gathering/read/GatheringCardList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const GatheringCardList = ({
<div> 찾는 내용이 없습니다. </div>
</div>
) :
<div className="mt-6 grid h-auto w-full justify-items-center gap-5 min-[745px]:grid-cols-2 min-[1024px]:grid-cols-3">
<div className="mt-6 grid h-auto w-full justify-items-center gap-5 min-[744px]:grid-cols-2 min-[1024px]:grid-cols-3">
{data?.map((i, index) => <GatheringItem key={i.gatheringId} data={i} />)}
</div>
}
Expand Down

0 comments on commit d8fbe2b

Please sign in to comment.