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),