Body CSS Fixes

touch-action manipulation = verhindert Doppelklick-Zoom auf iPhones.

overflow-x hidden = verhindert die Möglichkeit des Scrollens auf der horizontalen Achse.
overflow-y scroll = verhindert das Body jumpen, wenn overflow-x bei längeren Seiten.

CSS
* {
    touch-action: manipulation !important;
}

body {
    overflow-x: hidden !important;
    overflow-y: scroll !important;
}