Editor.js: max-width

Created on 7 Jul 2019  路  4Comments  路  Source: codex-team/editor.js

How do we set max-width?
It is 650px currently, i don't know why.

Most helpful comment

you can use css to override .ce-block__content and .ce-toolbar__content

All 4 comments

you can use css to override .ce-block__content and .ce-toolbar__content

this is not working for me.
have the css classes changed since Aug 2019?

Just open DOM debugger and find the classes you need to override.

Like @joel611 said. unset the default styles from these two classes

.ce-block__content,
.ce-toolbar__content {
    max-width: unset;
}
Was this page helpful?
0 / 5 - 0 ratings

Related issues

sei-jdshimkoski picture sei-jdshimkoski  路  5Comments

davedbase picture davedbase  路  3Comments

guillaumepn picture guillaumepn  路  4Comments

vsvanshi picture vsvanshi  路  4Comments

llewellynthomas picture llewellynthomas  路  5Comments