Skip to content

Commit

Permalink
fix sponsor logo sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
thilobillerbeck committed Jan 18, 2025
1 parent 0feb758 commit 2eb35ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/layout/SponsorLogo.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ const {
---

<div
class=`flex min-h-24 xl:min-h-20 flex-col justify-center bg-white p-4 rounded-lg ${extraClasses}`
class=`flex flex-col justify-center items-center relative h-20 bg-white rounded-lg ${extraClasses}`
>
<a href={externalLink}>
<img class="h-full w-full" src={imageSource} alt={altText} />
<img class="w-full max-w-24 max-h-16 block" src={imageSource} alt={altText} />
</a>
</div>

0 comments on commit 2eb35ea

Please sign in to comment.