Skip to content

Commit

Permalink
fix(contributor highlights): adds spacing to contributor highlights o…
Browse files Browse the repository at this point in the history
…n profile

fix #1057
  • Loading branch information
bdougie committed Apr 11, 2023
1 parent 3b7c860 commit 0a5de57
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ const ContributorProfileTab = ({
<div>
{/* eslint-disable-next-line camelcase */}
{highlights.map(({ id, title, highlight, url, created_at }) => (
<div className="flex gap-2 flex-col lg:flex-row lg:gap-7" key={id}>
<div className="flex gap-2 flex-col lg:flex-row lg:gap-7 mb-6 " key={id}>
<Link href={`/feed/${id}`}>
<p className="text-light-slate-10 text-sm">{getFormattedDate(created_at)}</p>
</Link>
Expand Down

0 comments on commit 0a5de57

Please sign in to comment.