We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca7ffd6 commit aba3bc9Copy full SHA for aba3bc9
packages/mui-utils/src/getScrollbarSize/getScrollbarSize.ts
@@ -3,5 +3,5 @@
3
export default function getScrollbarSize(doc: Document): number {
4
// https://developer.mozilla.org/en-US/docs/Web/API/Window/innerWidth#usage_notes
5
const documentWidth = doc.documentElement.clientWidth;
6
- return Math.abs(window.innerWidth - documentWidth);
+ return Math.abs(doc.defaultView!.innerWidth - documentWidth);
7
}
0 commit comments