fix: add scroll in heading layout

This commit is contained in:
VipinDevelops
2026-01-28 14:40:33 +05:30
parent 3d5e427894
commit 2cda36f065

View File

@@ -17,12 +17,14 @@ export function PageNavigationPaneOutlineTabPanel(props: Props) {
} = page;
return (
<div className="size-full pt-3 space-y-1">
<PageContentBrowser
className="mt-0"
editorRef={editorRef}
emptyState={<PageNavigationPaneOutlineTabEmptyState />}
/>
<div className="size-full overflow-y-auto vertical-scrollbar scrollbar-sm">
<div className="mt-3">
<PageContentBrowser
className="mt-0"
editorRef={editorRef}
emptyState={<PageNavigationPaneOutlineTabEmptyState />}
/>
</div>
</div>
);
}