[Vuejs]-CKEditor toolbar isnt properly adapting to the screen size on mobile, some of the toolbar items to be hidden and requiring horizontal scrolling

0👍

you need more config toolbar: shouldNotGroupWhenFull: true

For example:

let editorConfig =  {
        removePlugins: ['Title'],
        toolbar: {
          shouldNotGroupWhenFull: true
        }
      }

Leave a comment