Skip to content

Commit

Permalink
fix: adds spacing to contributor highlights container (#1089)
Browse files Browse the repository at this point in the history
Fixes #1057
  • Loading branch information
bdougie committed Apr 19, 2023
1 parent 55afaf9 commit 83d89bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const ContributorProfileTab = ({
<div>
{/* eslint-disable-next-line camelcase */}
{highlights.map(({ id, title, highlight, url, created_at }) => (
<div className="flex flex-col gap-2 lg:flex-row lg:gap-7" key={id}>
<div className="flex flex-col gap-2 lg:flex-row lg:gap-7 mb-6" key={id}>
<Link href={`/feed/${id}`}>
<p className="text-sm text-light-slate-10">{getFormattedDate(created_at)}</p>
</Link>
Expand Down

0 comments on commit 83d89bd

Please sign in to comment.