From a2e64a0013d00ebad7b26e19660ecf99547c9483 Mon Sep 17 00:00:00 2001 From: Steven Date: Wed, 1 Jul 2026 20:27:30 -0400 Subject: [PATCH] fix(ui): show up to 12 partner logos and fix width --- .../components/Common/Partners/PartnerButton/index.module.css | 3 ++- apps/site/components/Common/Partners/index.module.css | 1 + apps/site/components/Common/Partners/index.tsx | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/site/components/Common/Partners/PartnerButton/index.module.css b/apps/site/components/Common/Partners/PartnerButton/index.module.css index 12c4633d4994b..9477a4286b4b4 100644 --- a/apps/site/components/Common/Partners/PartnerButton/index.module.css +++ b/apps/site/components/Common/Partners/PartnerButton/index.module.css @@ -25,6 +25,7 @@ svg { @apply h-4 - w-auto; + w-auto + max-w-4; } } diff --git a/apps/site/components/Common/Partners/index.module.css b/apps/site/components/Common/Partners/index.module.css index 32c7743e32ba0..a293da7dd8feb 100644 --- a/apps/site/components/Common/Partners/index.module.css +++ b/apps/site/components/Common/Partners/index.module.css @@ -5,6 +5,7 @@ flex-row flex-wrap items-center + justify-center gap-2; } diff --git a/apps/site/components/Common/Partners/index.tsx b/apps/site/components/Common/Partners/index.tsx index 430ca83b6abb7..949c47d8ec81a 100644 --- a/apps/site/components/Common/Partners/index.tsx +++ b/apps/site/components/Common/Partners/index.tsx @@ -70,7 +70,7 @@ const PartnersList: FC = async ({ }) => { const isSmall = size === 'small'; - const SMALL_PARTNER_LIMIT = 6; + const SMALL_PARTNER_LIMIT = 12; const partners = await getPartners( length ?? (isSmall ? SMALL_PARTNER_LIMIT : undefined),