Change editor modal size

Is their any way to change the size of the editor modal when editing the provisions script ? Seems like it would be way better with more height.

Thanks

You may need to change the code, such as adding it in app.css

.CodeMirror,
textarea {
  height: 450px;
}

Thanks trueman,

I was expecting something in the admin tab config menu parameters but, since it’s open source, changing the code make sense.

I changed the following from

.CodeMirror{color:#000;direction:ltr;font-family:monospace;height:150px}

to

.CodeMirror{color:#000;direction:ltr;font-family:monospace;height:70%}

It’s so much better. 75% was a little too much because I had to scroll to see the save and delete button. Thanks again for your help.