Partially revert scrollbar handling on mobile, since its width-based and wrong
Have to investigate as to whether it was actually needed on mobile, doesn't seem to be the case from Firefox's Responsive Design Modemain
parent
fe6864a73a
commit
0fbe36e3fb
|
@ -1,5 +1,3 @@
|
||||||
import { isMobile } from 'flavours/glitch/util/is_mobile';
|
|
||||||
|
|
||||||
/** @type {number | null} */
|
/** @type {number | null} */
|
||||||
let cachedScrollbarWidth = null;
|
let cachedScrollbarWidth = null;
|
||||||
|
|
||||||
|
@ -29,7 +27,7 @@ export const getScrollbarWidth = () => {
|
||||||
return cachedScrollbarWidth;
|
return cachedScrollbarWidth;
|
||||||
}
|
}
|
||||||
|
|
||||||
const scrollbarWidth = isMobile(window.innerWidth) ? 0 : getActualScrollbarWidth();
|
const scrollbarWidth = getActualScrollbarWidth();
|
||||||
cachedScrollbarWidth = scrollbarWidth;
|
cachedScrollbarWidth = scrollbarWidth;
|
||||||
|
|
||||||
return scrollbarWidth;
|
return scrollbarWidth;
|
||||||
|
|
Loading…
Reference in New Issue