LeeHanYeong / django-quill-editor

django-quill-editor makes Quill.js easy to use on Django Forms and admin sites
https://django-quill-editor.readthedocs.io
MIT License
192 stars 45 forks source link

How do I adjust height and width? #85

Open medram opened 2 years ago

medram commented 2 years ago

Please help, How do I adjust height and width?

zankoAn commented 2 years ago

With the .vLargeTextField tag in CSS, you can specify width and height.

Example:

.vLargeTextField{
    width: 1000px;
    height: 400px;
}