Skip to content

Commit

Permalink
fixed justify card
Browse files Browse the repository at this point in the history
  • Loading branch information
yonatan-nyo committed Mar 2, 2024
1 parent 9faee09 commit 1db3060
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/BPAinfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const BPAInfo = ({ data }: { data: bpaType }) => {
{data.members.length > 1 ? (
<>
<p className="py-2 font-light">{data.jobDesc}</p>
<div className="flex gap-4 flex-wrap w-full">
<div className="flex gap-4 flex-wrap w-full justify-center sm:justify-start">
{data.members.map((member, idx) => (
<BPACard key={`${idx}-${member}-${data.name}`} name={member.name} imgUrl={member.imgUrl} />
))}
Expand Down

0 comments on commit 1db3060

Please sign in to comment.