Skip to content

Commit a2e64a0

Browse files
committed
fix(ui): show up to 12 partner logos and fix width
1 parent 104eb57 commit a2e64a0

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

apps/site/components/Common/Partners/PartnerButton/index.module.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626
svg {
2727
@apply h-4
28-
w-auto;
28+
w-auto
29+
max-w-4;
2930
}
3031
}

apps/site/components/Common/Partners/index.module.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
flex-row
66
flex-wrap
77
items-center
8+
justify-center
89
gap-2;
910
}
1011

apps/site/components/Common/Partners/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const PartnersList: FC<PartnersListProps> = async ({
7070
}) => {
7171
const isSmall = size === 'small';
7272

73-
const SMALL_PARTNER_LIMIT = 6;
73+
const SMALL_PARTNER_LIMIT = 12;
7474

7575
const partners = await getPartners(
7676
length ?? (isSmall ? SMALL_PARTNER_LIMIT : undefined),

0 commit comments

Comments
 (0)