Skip to content

Commit def0476

Browse files
authored
more feedback
1 parent 2c7dca2 commit def0476

4 files changed

Lines changed: 10 additions & 16 deletions

File tree

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

33
.partnerIcon {
4-
@apply h-10!
4+
@apply h-9!
55
w-auto!
6-
min-w-10!
6+
min-w-9!
77
!p-2;
88

99
svg {
10-
@apply !h-6
10+
@apply !h-4
1111
!w-auto;
1212
}
1313
}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ type ParnetsIconProps = Partners & ComponentProps<typeof Skeleton>;
1111

1212
const PartnersIcon: FC<ParnetsIconProps> = ({ href, logo, loading }) => {
1313
return (
14-
<Skeleton loading={loading} className="h-10 w-10 p-2">
14+
<Skeleton loading={loading} className="h-9 w-9 p-2">
1515
<Button kind="secondary" href={href} className={style.partnerIcon}>
1616
{cloneElement(logo, {
17-
className: 'h-5 w-auto',
17+
className: 'h-4 w-auto',
1818
width: 'auto',
19-
height: '20px',
19+
height: '16px',
2020
})}
2121
</Button>
2222
</Skeleton>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
flex-row
66
flex-wrap
77
items-center
8-
gap-4;
8+
gap-2;
99
}

apps/site/pages/en/index.mdx

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,7 @@ layout: home
118118
```
119119
120120
</div>
121-
Learn more what Node.js is able to offer with our [Learning materials](/learn).
122-
<div className='w-full flex flex-col gap-2 xs:mt-3'>
123-
<div className="flex justify-center">
124-
<PartnersIconList />
125-
</div>
126-
<span className="xs:mt-1 text-center text-sm">
127-
Node.js is proudly supported by the partners above <Link href="/about/partners">and more</Link>.
128-
</span>
129-
</div>
121+
<span className="text-neutral-800! dark:text-neutral-600!">
122+
Learn more what Node.js is able to offer with our [Learning materials](/learn).
123+
</span>
130124
</section>

0 commit comments

Comments
 (0)