Skip to content

Commit 3882477

Browse files
authored
some things
1 parent 6598a1e commit 3882477

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
.partnerIcon {
44
@apply h-12
55
w-auto
6+
min-w-12
67
p-2;
78

89
svg {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ type ParnetsIconProps = Partners & ComponentProps<typeof Skeleton>;
1212

1313
const PartnersIcon: FC<ParnetsIconProps> = ({ href, logo, loading }) => {
1414
return (
15-
<Skeleton loading={loading} className="h-12 w-12 p-1">
15+
<Skeleton loading={loading} className="h-12 w-12 p-2">
1616
<Button kind="secondary" href={href} className={style.partnerIcon}>
1717
{cloneElement(logo, {
1818
className: 'h-7 w-auto',

0 commit comments

Comments
 (0)