adjusted overflow for sidebar

This commit is contained in:
vamsi krishna
2024-12-05 20:21:36 +05:30
parent 4c0974c17c
commit 2ef4350d7a

View File

@@ -5,7 +5,7 @@ import { NotificationsSidebarRoot } from "@/components/workspace-notifications";
export default function ProjectInboxIssuesLayout({ children }: { children: React.ReactNode }) {
return (
<div className="relative w-full h-full flex items-center">
<div className="relative w-full h-full overflow-hidden flex items-center">
<NotificationsSidebar />
<div className="w-full h-full overflow-hidden overflow-y-auto">{children}</div>
</div>