You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure if it was intentional, but if the html element has any form of overflow:scroll set in the CSS, this lib doesn't work fully, you can still scroll.
A quick fix is just to add the scroll lock to the HTML tag when scroll is disabled:
They stopped the repairs. I had to do it myself, in the same way, with a new version of typeScript. And fix these problems for everyone to use. add react hooks、vue3 example
Not sure if it was intentional, but if the html element has any form of overflow:scroll set in the CSS, this lib doesn't work fully, you can still scroll.
A quick fix is just to add the scroll lock to the HTML tag when scroll is disabled:
document.documentElement.style.overflow = "hidden";
The text was updated successfully, but these errors were encountered: