How can i change the width of the CKEditor 5?
I found how to change the height (see below) but unfortunately this trick doesn't work for the width because it only changes the width of the textarea (the toolbox stays at the original width).
<style>
.ck-editor__editable {
min-height: 800px;
}
</style>
Thanks in advance
UPDATE
The solution in case other people would encounter the same problem:
<style>
/*Textbox*/
.ck-editor__editable {
min-height: 800px;
max-height: 800px;
min-width: 860px;
}
/*Toolbar*/
.ck-editor__top {
min-width: 860px;
}
</style>