Skip to content

Commit 41a9d94

Browse files
authored
some things
1 parent 98b2991 commit 41a9d94

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed
Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
@reference "../../../../styles/index.css";
22

33
.partnerIcon {
4-
@apply h-12
5-
w-auto
6-
p-2;
4+
@apply h-12!
5+
w-auto!
6+
min-w-12!
7+
!p-2;
78

89
svg {
9-
@apply h-7
10-
w-auto;
10+
@apply !h-7
11+
!w-auto;
1112
}
1213
}

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)