UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

9 lines (8 loc) 397 B
"use client"; //#region packages/@mantine/core/src/components/ScrollArea/utils/is-scrolling-within-scrollbar-bounds.ts function isScrollingWithinScrollbarBounds(scrollPos, maxScrollPos) { return scrollPos > 0 && scrollPos < maxScrollPos; } //#endregion exports.isScrollingWithinScrollbarBounds = isScrollingWithinScrollbarBounds; //# sourceMappingURL=is-scrolling-within-scrollbar-bounds.cjs.map