We have noticed that occasionally the layout of certain pages will break on our site and the body content and the footer will be side-by-side in two separate columns.
We can’t figure out yet when/why this happens, it doesn’t change after any of our page design or CSS changes and it doesn’t seem to correspond to any updates.
The CSS rule that I have to change to fix the issue is:
.x-root {
display: flex;
}
If I change this to display: block the layout is fixed. What do you think is causing this issue to come up sporadically and is there a better fix than just changing this styling rule on each page where it happens?
Thanks!

