Skip to content

Commit

Permalink
Fix container padding for Query List Cover pattern.
Browse files Browse the repository at this point in the history
This was broken by changes here: WordPress/gutenberg#60308
  • Loading branch information
justintadlock committed Jun 11, 2024
1 parent 84550a5 commit a0b5b8d
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions patterns/query-list-cover.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,18 @@
"inherit":true
},
"align":"full",
"style":{"spacing":{"blockGap":"0"}},
"style":{
"spacing":{
"blockGap":"0",
"padding":{
"right":"0",
"left":"0"
}
}
},
"layout":{"type":"constrained"}
} -->
<div class="wp-block-query alignfull">
<div class="wp-block-query alignfull" style="padding-right:0;padding-left:0">

<!-- wp:post-template {
"align":"full",
Expand Down

0 comments on commit a0b5b8d

Please sign in to comment.