2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-07-02 23:54:28 -06:00

Fix instructions to change min-height

If you set `min-height` to value less than default 300px, you'll need to set it on `.CodeMirror-scroll` also for it to work.
This commit is contained in:
Igor Bondarenko 2015-07-14 13:54:18 +03:00
parent bbcff529ec
commit 20d66d9a23

View File

@ -85,8 +85,8 @@ var simplemde = new SimpleMDE({
To change the minimum height (before it starts auto-growing):
```CSS
.CodeMirror {
min-height: 300px;
.CodeMirror, .CodeMirror-scroll {
min-height: 200px;
}
```