Skip to content

Commit

Permalink
fix: smaller image on tablet screens
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorien Grönwald committed Jun 6, 2024
1 parent 0dd1473 commit 1beb33c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tsx/components/StakeholderCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const StakeholderCard: React.FC<StakeholderCardProps> = ({ label, url, image, ch
<figure className="h-full cursor-pointer bg-white shadow-md rounded-2xl p-6 border border-grey-100 md:p-8 md:grid md:grid-cols-[15rem,auto] md:gap-x-12 md:items-center">
<img
src={image}
className="object-contain max-w-64 h-32 mx-auto" alt={`Logo ${label}`}/>
className="object-contain max-w-64 h-32 mx-auto md:max-w-52" alt={`Logo ${label}`}/>

<figcaption className="mt-10 md:mt-0">
<h3 className="font-lato font-semibold text-lg">{label}</h3>
Expand Down

0 comments on commit 1beb33c

Please sign in to comment.