kotlinx.html icon indicating copy to clipboard operation
kotlinx.html copied to clipboard

body.sytle have overflowX and overflowY but not overflow

Open ker2x opened this issue 3 years ago • 0 comments
trafficstars

I don't know if it's on purpose or not, but document.body!!.style.overflow = "hidden" doesn't works.

This works :

    document.body!!.style.overflowX = "hidden"
    document.body!!.style.overflowY = "hidden"

I expected that setting style.overflow set style.overflowX style.overflowY to the same provided value but I got an unresolved reference instead

ker2x avatar Sep 05 '22 15:09 ker2x