CSS Snippet: Make the block section not full height for ACSS

Some users don't like the full window height block section when Automatic CSS is enabled.

You can disable this by this CSS available in Gutenberg Editor Custom CSS

Code:

/* ACSS: Make the edtitor not full height */
body .is-root-container {
  min-block-size: unset !important;
}
body .editor-styles-wrapper.block-editor-writing-flow {
  min-block-size: unset !important;
}

Last updated