UNPKG

@wikimedia/codex

Version:

Codex Design System for Wikimedia

10 lines (9 loc) 303 B
/** * Calculate the width of the browser's vertical scrollbar. * * Using window.innerWidth can be thrown off by horizontal overflow on the page, * so measure using a temporary element instead. * * @return {number} Scrollbar width in pixels */ export declare function getScrollbarWidth(): number;