# 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.&#x20;

<figure><img src="https://115503993-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FVRpgq7lelxP9PFleE0QT%2Fuploads%2FBxwMHLFzPOHeNExDVnUe%2FScreenshot%202024-09-13%20at%2011.37.55%E2%80%AFAM.png?alt=media&#x26;token=25fcd990-1629-480a-9b65-a981733b4eb9" alt=""><figcaption></figcaption></figure>

You can disable this by this CSS available in [](https://docs.gutenbricks.com/customizing-gutenberg/gutenberg-editor-custom-css "mention")

Code:

```css
/* 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;
}
```
