Skip to content

Commit 40c2346

Browse files
authored
more feedback
1 parent fc471d6 commit 40c2346

File tree

4 files changed

+15
-16
lines changed

4 files changed

+15
-16
lines changed
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: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ layout: home
4444
</div>
4545

4646
<span className="italic text-center text-xs! text-neutral-800 dark:text-neutral-600">"LTS" refers to the long-term support version of Node.js. <Link href="/about/previous-releases">Learn more about Node.js releases.</Link></span>
47+
48+
<div className="flex justify-center xs:mt-3">
49+
<PartnersIconList />
50+
</div>
51+
<span className="text-center text-sm! text-neutral-800 dark:text-neutral-600">Node.js is proudly supported by the partners above <Link href="/about/partners">and more</Link>.</span>
4752
</div>
4853

4954
</div>
@@ -136,13 +141,7 @@ layout: home
136141
```
137142
138143
</div>
139-
Learn more what Node.js is able to offer with our [Learning materials](/learn).
140-
<div className='w-full flex flex-col gap-2 xs:mt-3'>
141-
<div className="flex justify-center">
142-
<PartnersIconList />
143-
</div>
144-
<span className="xs:mt-1 text-center text-sm">
145-
Node.js is proudly supported by the partners above <Link href="/about/partners">and more</Link>.
146-
</span>
147-
</div>
144+
<span className="text-neutral-800! dark:text-neutral-600!">
145+
Learn more what Node.js is able to offer with our [Learning materials](/learn).
146+
</span>
148147
</section>

0 commit comments

Comments
 (0)