Skip to content
This repository was archived by the owner on Oct 27, 2023. It is now read-only.

Commit fbb817c

Browse files
authored
hotfix: card standardization - Bounty hall (#862)
2 parents 8a0b840 + 07edf5f commit fbb817c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

components/bounties/list-recent-issues.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ export default function ListRecentIssues() {
3030
}, []);
3131

3232
return (
33-
<CustomContainer className="mb-3">
33+
<CustomContainer>
3434
<div className="d-flex mt-2 p-1">
3535
<h4 className="mt-1">{t("recent-bounties")}</h4>
3636
</div>
3737
<LoadingList loading={loading} />
38-
<div className="row mt-3">
38+
<div className="row gy-3">
3939
{bounties &&
4040
bounties?.map((bounty) => (
41-
<div className="col mb-1" key={bounty.id}>
41+
<div className="col-md-4 col" key={bounty.id}>
4242
<IssueListItem issue={bounty} key={bounty.id} size="sm" />
4343
</div>
4444
))}

0 commit comments

Comments
 (0)