From c489e26948e5e5c16f524935a8f2f907b72bc6c2 Mon Sep 17 00:00:00 2001 From: Glen Davies Date: Mon, 30 May 2022 15:49:21 +1200 Subject: [PATCH] Lower the priority of the gallery gap css so it loads after the block layout css (#41423) Co-authored-by: Glen Davies --- packages/block-library/src/gallery/index.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/block-library/src/gallery/index.php b/packages/block-library/src/gallery/index.php index 4aed9cfed051b5..c31df47a3a01b3 100644 --- a/packages/block-library/src/gallery/index.php +++ b/packages/block-library/src/gallery/index.php @@ -86,7 +86,8 @@ function block_core_gallery_render( $attributes, $content ) { 'wp_footer', function () use ( $style ) { echo ''; - } + }, + 11 ); return $content; }