Skip to content
Open
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
2 changes: 1 addition & 1 deletion packages/ui-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@node-core/ui-components",
"version": "1.5.8",
"version": "1.5.9",
"type": "module",
"exports": {
"./*": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
@apply [grid-area:sidebar]
lg:sticky
lg:top-0
lg:h-[100vh]
lg:max-h-screen
lg:self-stretch
lg:overflow-y-auto;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
py-6
sm:overflow-auto
sm:border-r
sm:pb-16
Copy link
Member

Choose a reason for hiding this comment

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

Padding could probably be a bit smaller.

Copy link
Contributor Author

@malav2110 malav2110 Jan 28, 2026

Choose a reason for hiding this comment

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

With pb-14, the last item on the list is barely visible thus added pb-16.

Screenshot 2026-01-28 at 3 50 34 PM

Copy link
Member

Choose a reason for hiding this comment

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

Is that really the case? This is how much padding I see

image

Copy link
Member

Choose a reason for hiding this comment

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

You're probably referring to the padding when the footer isn't visible.

image

So this is probably not the place you want to change the padding.

Copy link
Member

Choose a reason for hiding this comment

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

For example, if you see the beginning of the sidebar has the same margins/paddings no matter if the header is visible or not

image image

But the same isn't truthy for the end of the sidebar:

image image

So this means this place is probably not the right one to add padding. Or it must be a mix of two different places.

md:max-w-xs
lg:px-6
dark:border-neutral-900
Expand Down
Loading