score:0

Accepted answer

the best solution is to wrap all your elements in a div for example and apply the overflow-x: hidden on it.

you can also try to use media queries and apply the overflow-x: hidden on the body of your app. for example:

@media screen and (max-width: 375px) {
    body {
        overflow-x: hidden;
    }
}

Related Query

More Query from same tag