Skip to content

Commit

Permalink
refactor(member): 커뮤니티 모아보기 UI 개선 (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
gwansikk committed Apr 6, 2024
1 parent ec1e8d3 commit 2d4385d
Showing 1 changed file with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,17 @@ const CommunityBoardCollectSection = ({
<p className="font-semibold truncate">{title}</p>
<p className="text-gray-500 truncate">{content}</p>
</div>
<p className="flex items-center gap-1">
<LiaCommentSolid />
{commentCount}
</p>
<div className="flex flex-col">
<p>
{writerName} {writerId && `(${writerId})`}
<div className="flex justify-between gap-2">
<p className="flex items-center w-12 gap-1">
<LiaCommentSolid />
{commentCount}
</p>
<p>{formattedDate(createdAt)}</p>
<div className="w-32">
<p>
{writerName} {writerId && `(${writerId})`}
</p>
<p>{formattedDate(createdAt)}</p>
</div>
</div>
</Link>
),
Expand Down

0 comments on commit 2d4385d

Please sign in to comment.