Hi there,
With the theme brand my mobile site rocks left to right a bit on mobile.
Can you go to Additional CSS field in the customizer and replace this:
@media (max-width: 992px) {
.site-content {
flex-direction: column;
}
.site-content .content-area,
.site-content .is-right-sidebar {
width: 100%;
}
}
with this:
@media (max-width: 992px) {
.site-content {
flex-direction: column;
}
.site-content .content-area,
.site-content .is-right-sidebar {
width: 100%;
overflow-x: hidden;
}
}