Skip to content

Commit

Permalink
design: 태그의 최대 크기에 맞춰서 티클 카드 레이아웃 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
simeunseo committed Nov 26, 2024
1 parent e6f49ce commit 2e550e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/components/ticle/list/TicleCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ const TicleCard = ({
speakerProfileImg,
}: TicleCardProps) => {
return (
<article className="flex w-[19rem] cursor-pointer flex-col gap-14 rounded-lg border border-main bg-white px-6 py-8 shadow-normal transition-transform duration-500 ease-in-out hover:-translate-y-3 hover:border-primary hover:shadow-up">
<article className="flex h-[23rem] w-[19rem] cursor-pointer flex-col justify-between gap-14 rounded-lg border border-main bg-white px-6 py-8 shadow-normal transition-transform duration-500 ease-in-out hover:-translate-y-3 hover:border-primary hover:shadow-up">
<div className="flex flex-col gap-4">
<h3 className="text-head3 text-main">{title}</h3>
<div className="flex gap-2">
<div className="flex h-20 flex-wrap gap-2">
{tags.map((tag) => (
<Badge key={tag}>{tag}</Badge>
))}
Expand Down

0 comments on commit 2e550e7

Please sign in to comment.