Skip to content

Commit

Permalink
fix: center partner icons vertically
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderl19 committed Jan 26, 2024
1 parent 2e840e1 commit f2c9904
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ export default async function Sponsors() {
>
Partners
</h2>
<div className="flex flex-wrap gap-8 justify-center pb-32">
<div className="flex flex-wrap gap-8 justify-center pb-32 items-center">
{partners.partners.map(({ _key, name, url, logo }) => (
<a
key={_key}
href={url}
target="_blank"
rel="noopener noreferrer"
className="max-w-xs"
className="max-w-xs flex-grow"
>
{/* eslint-disable-next-line @next/next/no-img-element*/}
<img
Expand Down

0 comments on commit f2c9904

Please sign in to comment.