Has anyone had this issue in Wagtail 2.10.1 where the streamfields seem to be going off the page and under the grey side bar cutting off the left hand side of all the fields?
I've attached an image to show what I'm going on about:
Streamfields going off the left hand side under the grey bar
According to https://github.com/wagtail/wagtail/issues/6347#issuecomment-678672024 , this can happen if you've defined your panel as
StreamFieldPanel("some_field", classname="full")
. Removingclassname="full"
should fix it.