Skip to content

Commit

Permalink
flex offer home
Browse files Browse the repository at this point in the history
  • Loading branch information
cassiopeelaurie committed Feb 7, 2024
1 parent bf53719 commit a2408fe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/CardModel/CardOffer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function CardOffer() {
}, []);

return (
<div>
<>
{offers.map((offer) => (
<div className="card-container" key={offer.id}>
<h3 className="label-offre">{offer.title}</h3>
Expand All @@ -43,7 +43,7 @@ function CardOffer() {
<ButtonMini onClick={handleClickPostuler} textBtn="Postuler" />
</div>
))}
</div>
</>
);
}

Expand Down
4 changes: 4 additions & 0 deletions frontend/src/pages/HomeOffer/Home.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,7 @@
font-style: italic;
}
}
.offer-container-offer {
display: flex;
flex-wrap: wrap;
}

0 comments on commit a2408fe

Please sign in to comment.