SinglePage.scss
due to setting the
.details {
overflow-y: scroll;
}
.features {
overflow-y: scroll;
}

I hide the overflow-y-scroll in md screen
.details {
overflow-y: scroll;
@include md {
overflow-y: hidden;
}
}
.features {
overflow-y: scroll;
@include md {
overflow-y: hidden;
}
}