Blocks with the .alignfull class can add a slight side-scroll to the page, only when there's also a vertical scrollbar:
Pretty sure this is due to the weirdness in vw -- when used for width, it includes the vertical sidebar in the screen width, causing it to be a bit wider than the visible space when there's a scrollbar.
I think swapping for 100% would work in this case, or hiding the overflow at some point.
Blocks with the
.alignfull
class can add a slight side-scroll to the page, only when there's also a vertical scrollbar:Pretty sure this is due to the weirdness in
vw
-- when used for width, it includes the vertical sidebar in the screen width, causing it to be a bit wider than the visible space when there's a scrollbar.I think swapping for
100%
would work in this case, or hiding the overflow at some point.