Skip to content

Commit

Permalink
fix: fix font sizes in card
Browse files Browse the repository at this point in the history
  • Loading branch information
ArJSarmiento committed Apr 9, 2024
1 parent aee4a05 commit a998ecd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/RecentEventsCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ const RecentEventsCard = ({ event }) => {
/>
</div>
<div className="p-2 md:p-3 h-2/6">
<h1 className="text-xl md:text-lg mb-1 md:mb-2 font-raleway font-bold text-wrap">
<h1 className="text-lg mb-1 md:mb-2 font-raleway font-bold text-wrap">
{title}
</h1>
<p className="text-sm md:text-md text-gray-500 mb-3">{getDate()}</p>
<p className="text-sm md:text-md text-gray-500">{getDate()}</p>
<div
className="text-sm md:text-md font-montserrat line-clamp-2"
dangerouslySetInnerHTML={{ __html: description }}
Expand Down

0 comments on commit a998ecd

Please sign in to comment.