Skip to content

Commit

Permalink
Improve company logo sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-kl1 committed Feb 2, 2025
1 parent 7700bfc commit d61632d
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 14 deletions.
5 changes: 2 additions & 3 deletions public/images/sponsors/blackbird.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 11 additions & 2 deletions public/images/sponsors/hyva.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 16 additions & 1 deletion public/images/sponsors/platformsh.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 11 additions & 8 deletions src/components/SponsorList/SponsorListByType.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,18 @@ const SponsorListByType = ({ items }: { items: SponsorProps[] }) => {
height={280}
className="rounded-3xl object-fit md:col-span-2"
/>
<div className="flex flex-col gap-4 md:col-span-3">
<Image
src={sponsor.logoSrc}
alt={sponsor.name}
width={150}
height={30}
/>
<div className="flex flex-col gap-6 md:col-span-3">
<div className="h-8">
<Image
src={sponsor.logoSrc}
alt={sponsor.name}
width={150}
height={30}
className="object-fit h-full w-auto"
/>
</div>
<Typography color="dark">
{sponsor.description ?? sponsor.caption}
{sponsor.description ? sponsor.description : sponsor.caption}
</Typography>
<ButtonLink
variant="secondary-invert"
Expand Down

0 comments on commit d61632d

Please sign in to comment.