I'm facing two issues.
Basically [ONLY] chrome mobile browser has additional space below the body. It cause can scroll even tough I make body unscrollable. normal case(inccuding safari or any other browser) it works as I expected.
body {
position: fixed;
width: 100vw;
height: 100vh;
overflow: hidden;
touch-action: none;
}
other issue could be related with that additional space below. After Keyboard disappear scroll position is located like uploaded picture.
How can I solve this issue?