remove scrollbar gutter for Chrome when body scroll is locked
parent
0e3b2633b9
commit
54dd4af312
|
@ -6,6 +6,7 @@ let refCount = 0
|
|||
function incrementRefCount() {
|
||||
if (refCount === 0) {
|
||||
document.body.style.overflow = 'hidden'
|
||||
document.documentElement.style.scrollbarGutter = 'auto'
|
||||
}
|
||||
refCount++
|
||||
}
|
||||
|
@ -14,6 +15,7 @@ function decrementRefCount() {
|
|||
refCount--
|
||||
if (refCount === 0) {
|
||||
document.body.style.overflow = ''
|
||||
document.documentElement.style.scrollbarGutter = ''
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue