pikulinpw / ckeditor5-fullscreen

Maximize your CKEditor 5 editing space with the FullScreen plugin. Offering a seamless way to expand the editor to full screen, it ensures an uninterrupted and expansive writing canvas.
Other
9 stars 1 forks source link

Full Screen Source Mode Has No Scroll #3

Closed syntaxsurge closed 6 months ago

syntaxsurge commented 6 months ago

To fix this issue, you can add this CSS:

.ck.fullscreen-mode .ck.ck-editor__main {
    height: 100% !important;
    resize: none !important;
    max-height:100% !important;
    overflow: scroll;
}