Your theme may have options built-in for changing the editor line width. See →
If not, you could use one of these CSS snippets →
/*- editor line width - default 700px -*/
body {
--file-line-width: 900px;
}
/*- editor line width - fills entire editor -*/
body {
--file-line-width: 100%;
}
5 Likes