()
| 24 | } |
| 25 | |
| 26 | export function getOriginalBodyPadding() { |
| 27 | const style = window.getComputedStyle(document.body, null); |
| 28 | |
| 29 | return parseInt((style && style.getPropertyValue('padding-right')) || 0, 10); |
| 30 | } |
| 31 | |
| 32 | export function conditionallyUpdateScrollbar() { |
| 33 | const scrollbarWidth = getScrollbarWidth(); |