これを適用する
ただし管理画面なので、CSSを追加するfunctions.phpになる
/* パターン画面のバグ解消 */
function add_admin_custom_css() {
echo '<style>
.components-resizable-box__container.has-show-handle.editor-resizable-editor.is-resizable {
height: 100% !important;
}
</style>';
}
add_action('admin_head', 'add_admin_custom_css');