Skip to content

Commit d2a331c

Browse files
committed
[TOOL-3839] Fix double scrollbars in project settings page
1 parent 2a1f4be commit d2a331c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

apps/dashboard/src/@/components/blocks/SidebarLayout.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,10 @@ export function FullWidthSidebarLayout(props: {
5959
const { contentSidebarLinks, children, footerSidebarLinks } = props;
6060
return (
6161
<div
62-
className={cn("flex w-full flex-1 overflow-y-hidden", props.className)}
62+
className={cn(
63+
"relative flex w-full flex-1 overflow-y-hidden",
64+
props.className,
65+
)}
6366
>
6467
{/* left - sidebar */}
6568
<Sidebar collapsible="icon" side="left">

0 commit comments

Comments
 (0)