We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6598a1e commit a501361Copy full SHA for a501361
2 files changed
apps/site/components/Common/Partners/PartnerIcon/index.module.css
@@ -1,12 +1,13 @@
1
@reference "../../../../styles/index.css";
2
3
.partnerIcon {
4
- @apply h-12
5
- w-auto
6
- p-2;
+ @apply h-12!
+ w-auto!
+ min-w-12!
7
+ !p-2;
8
9
svg {
- @apply h-7
10
- w-auto;
+ @apply !h-7
11
+ !w-auto;
12
}
13
apps/site/components/Common/Partners/PartnerIcon/index.tsx
@@ -12,7 +12,7 @@ type ParnetsIconProps = Partners & ComponentProps<typeof Skeleton>;
const PartnersIcon: FC<ParnetsIconProps> = ({ href, logo, loading }) => {
14
return (
15
- <Skeleton loading={loading} className="h-12 w-12 p-1">
+ <Skeleton loading={loading} className="h-12 w-12 p-2">
16
<Button kind="secondary" href={href} className={style.partnerIcon}>
17
{cloneElement(logo, {
18
className: 'h-7 w-auto',
0 commit comments