fix(core): prevent all-docs header from overlapping scrollbar (#10270)

This commit is contained in:
CatsJuice
2025-02-19 09:24:49 +00:00
parent 926b35c91f
commit e726df9a1b

View File

@@ -152,7 +152,7 @@ const Scroller = forwardRef<
<Scrollable.Viewport {...props} ref={ref}>
{children}
</Scrollable.Viewport>
<Scrollable.Scrollbar />
<Scrollable.Scrollbar style={{ zIndex: 1 }} />
</Scrollable.Root>
);
});