Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions apps/site/navigation.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -170,4 +165,4 @@
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelated sidebar CSS change accidentally included

Medium Severity

The PR's changes to packages/ui-components/src/Containers/Sidebar/index.module.css add flex-1, overflow-y-auto, and scroll-smooth to .navigation. This makes each SidebarGroup an independently sized and scrollable region, nested within the main sidebar scroll, materially altering layout and scrolling behavior. These changes appear unrelated to the PR's stated purpose and also introduce an indentation inconsistency.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 9d673ae. Configure here.


.mobileSelect {
@apply ml:hidden
Expand Down
Loading