Skip to content

Commit

Permalink
changed rounding on images (#552)
Browse files Browse the repository at this point in the history
  • Loading branch information
MariaBonde authored Dec 11, 2024
1 parent c8f1be8 commit d820849
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/Staffing/ConsultantRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -217,12 +217,12 @@ export default function ConsultantRows({
<Image
src={consultant.imageThumbUrl}
alt={consultant.name}
className="w-10 h-10 rounded-full self-center object-contain"
className="w-10 h-10 rounded-md self-center object-contain"
width={32}
height={32}
/>
) : (
<div className="w-8 h-8 rounded-full bg-primary"></div>
<div className="w-8 h-8 rounded-md bg-primary"></div>
)}
</div>
<div className="flex flex-col gap-1 w-7/12 ">
Expand Down

0 comments on commit d820849

Please sign in to comment.