Thank you! your css code was helpfull, if to remove scoped in style definition. Could you please explain why ?
as this css was defined in 1 vue file. I expected that all styles inside of
But basically scoped styles apply selectors to the css such that those styles are applied only to elements in the current component. Since CKEditor is a component itself, the scoped styles are not applied to it.
In general you should always apply css overrides meant for third party packages globally to avoid issues like this.
Answering this because I couldnt find the answer on google, if you're using CKEditor5 and want to change the height without using css you can use the following code:
Just declaring a piece of information. Document here
Classic editor (CKEditor 5) no longer encapsulates the editing area in an <iframe>, which means that the height (and similar options) of the editing area can be easily controlled with CSS. For example the height setting can be achieved with .ck-editor__editable_inline { height:400px; }.
So from CKeditor 5, you are able to control the height manually. I myself prefer having all of them in one configuration file