Skip to content

Commit

Permalink
✨Feat: TimelineCard 반응형 수정 #46
Browse files Browse the repository at this point in the history
  • Loading branch information
puretension committed May 4, 2024
1 parent 7dbdfa9 commit 3d66651
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/timeline/part/TimelineMonthlyPart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ const TimelineMonthlyPart: React.FC<TimelineMonthlyPartProps> = ({ timelineData
<>
{Object.entries(groupedData).map(([date, cards]) => (
<div key={date} className="mx-auto my-10 animate-fadeIn">
<div className="grid grid-cols-1 desktop:grid-cols-2 gap-4">
<DateHeader date={date} />
<hr className="border-t-[1px] border-mono_700 my-1" />
<TimelineMonthlyCardSection timelineData={cards} />
</div>
</div>
))}
</>
Expand Down

0 comments on commit 3d66651

Please sign in to comment.