page.css section.full-width produces a horizontal scroll bar when a vertical scrollbar is present for browsers other than Firefox.
section.full-width {
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
Adding max-width: 100% fixed it for us
Maybe there are other options: https://stackoverflow.com/questions/25225682/difference-between-width100...
Active
5.5
Code