Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

svg {
@apply h-4
w-auto;
w-auto
max-w-4;
}
}
1 change: 1 addition & 0 deletions apps/site/components/Common/Partners/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
flex-row
flex-wrap
items-center
justify-center
gap-2;
}

Expand Down
2 changes: 1 addition & 1 deletion apps/site/components/Common/Partners/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const PartnersList: FC<PartnersListProps> = 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),
Expand Down
Loading