Why is the new Gutenberg editor so narrow, and how to make it wider?

This worked for me, add this to the end of your themes functions.php file:

add_action('admin_head', 'wp_blocks_fullwidth');

function wp_blocks_fullwidth() {
    echo '<style>
        .wp-block {
            max-width: unset;
         }
    </style>';
}

Leave a Comment