Editor height is calculated as sum of block heights + 300px of bottomZone. This extra bottomZone of 300 px is huge for use cases such as comment section, or asking users to write small notes or paragraph.
It would be great if we have option to decrease the bottomZone height.

Resolved by #719
Wasn't solved, as far as i can see.

Even if you reduce the codex-editor content height, an 300px padding-bottom overflows the editor content.
How can i fix this?
minHeight option can't set to 0px.
Please fix
this.config.minHeight = this.config.minHeight || 300;
to
this.config.minHeight = this.config.minHeight!==undefined ? this.config.minHeight || 300;
https://github.com/codex-team/editor.js/pull/719/files#diff-e3bf20e89f6b22c16beb3e17fb3c8a60R154
@hata6502 you are welcome to fix it and send a PR
Not fixed, still a problem!

minHeight set to 30 however it still creates a 300px padding-bottom, this is really annoying. Please resolve

Not fixed, still a problem!
minHeight set to 30 however it still creates a 300px padding-bottom, this is really annoying. Please resolve
you are using it wrong. There is an unnecessary config wrapper in your code.
How do I use config in my code? I couldn't find any examples anywhere. Please help!

@khan9920
this.editor = new EditorJS({
holder: 'editor-js',
...,
minHeight : 0
});
Most helpful comment
@khan9920