Had the same problem, found the culprit
.wp-container-X
styles are all set to margin-inline-start: 2em
When inspecting an H2, the computed CSS is:
.wp-container-1 > * + * {
margin-block-start: var( --wp--style--block-gap );
margin-block-end: 0;
}
I’m currently trying to work out how to fix this without breaking anything else.
-
This reply was modified 2 years, 7 months ago by francibambi.