From 1e67e28a3ee5cf7cdc763f3497e9df1e2f2dd52e Mon Sep 17 00:00:00 2001 From: 7487 <7487@users.noreply.github.com> Date: Sat, 25 Apr 2026 20:44:58 +0800 Subject: [PATCH 1/2] chore: remove unmaintained mastodon link from footer (#7873) --- apps/site/navigation.json | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/apps/site/navigation.json b/apps/site/navigation.json index 65d0e9f69b295..55416e4968853 100644 --- a/apps/site/navigation.json +++ b/apps/site/navigation.json @@ -84,11 +84,6 @@ "link": "https://discord.gg/nodejs", "alt": "Discord" }, - { - "icon": "mastodon", - "link": "https://social.lfx.dev/@nodejs", - "alt": "Mastodon" - }, { "icon": "bluesky", "link": "https://bsky.app/profile/nodejs.org", @@ -170,4 +165,4 @@ } } } -} +} \ No newline at end of file From 9d673ae2fb92492daa66c3ca42bb150e3efc70ca Mon Sep 17 00:00:00 2001 From: 7487 <7487@users.noreply.github.com> Date: Sat, 25 Apr 2026 21:27:43 +0800 Subject: [PATCH 2/2] fix: add overflow-auto to sidebar navigation (#8521) When sidebar content overflows the viewport on desktop, users cannot scroll to see hidden items. Add flex-1 + overflow-y-auto + scroll-smooth to make the sidebar independently scrollable within the page layout. Co-Authored-By: Claude Opus 4.7 --- .../src/Containers/Sidebar/index.module.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/packages/ui-components/src/Containers/Sidebar/index.module.css b/packages/ui-components/src/Containers/Sidebar/index.module.css index a56bed69bf94b..882d35b213e32 100644 --- a/packages/ui-components/src/Containers/Sidebar/index.module.css +++ b/packages/ui-components/src/Containers/Sidebar/index.module.css @@ -20,10 +20,13 @@ dark:border-neutral-900 dark:bg-neutral-950; - .navigation { - @apply ml:flex + .navigation { + @apply ml:flex + flex-1 + overflow-y-auto + scroll-smooth hidden; - } + } .mobileSelect { @apply ml:hidden