stop overscrolling on responsive ios
this stops the site bouncing around all over the place when you try and scroll in ios
CSS
@media(max-width:1024px) {
html {
overflow-x: hidden;
}
body {
height: 100%;
overflow-y: hidden;
overflow-x: scroll;
}
}