diff --git a/.changeset/sidebar-scroll-min-height.md b/.changeset/sidebar-scroll-min-height.md new file mode 100644 index 0000000000000..ac00d1c35ccbc --- /dev/null +++ b/.changeset/sidebar-scroll-min-height.md @@ -0,0 +1,5 @@ +--- +"@rocket.chat/meteor": patch +--- + +Fixed the sidebar not scrolling when its content is taller than the viewport — the inner wrapper was pinned to the scroll container's height instead of using it as a minimum, so overflowing content was clipped diff --git a/apps/meteor/client/components/Sidebar/Content.tsx b/apps/meteor/client/components/Sidebar/Content.tsx index 4626341737f34..41ce7cda259d4 100644 --- a/apps/meteor/client/components/Sidebar/Content.tsx +++ b/apps/meteor/client/components/Sidebar/Content.tsx @@ -7,7 +7,7 @@ export type ContentProps = ComponentPropsWithoutRef; const Content = ({ children, ...props }: ContentProps) => ( - + {children}