Twenty Twenty: Remove extra margin within the Query Loop block.
Props ryelle, Clorith. See #53482. Built from https://develop.svn.wordpress.org/trunk@51231 git-svn-id: http://core.svn.wordpress.org/trunk@50840 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4381bf2ef6
commit
2f063a72f2
|
@ -1084,6 +1084,12 @@ hr.wp-block-separator.is-style-dots::before {
|
|||
padding-right: 1.3em;
|
||||
}
|
||||
|
||||
/* Block: Post Template ---------------- */
|
||||
|
||||
.editor-styles-wrapper ul.wp-block-post-template {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
|
||||
/* X. Media Queries
|
||||
/* ------------------------------------------- */
|
||||
|
|
|
@ -1084,6 +1084,12 @@ hr.wp-block-separator.is-style-dots::before {
|
|||
padding-left: 1.3em;
|
||||
}
|
||||
|
||||
/* Block: Post Template ---------------- */
|
||||
|
||||
.editor-styles-wrapper ul.wp-block-post-template {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
|
||||
/* X. Media Queries
|
||||
/* ------------------------------------------- */
|
||||
|
|
|
@ -3444,6 +3444,14 @@ figure.wp-block-table.is-style-stripes {
|
|||
margin-top: 0;
|
||||
}
|
||||
|
||||
/* Block: Post Template ---------------- */
|
||||
|
||||
.wp-block-post-template,
|
||||
.wp-block-post-template > li {
|
||||
margin-right: 0;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
|
||||
|
|
|
@ -3466,6 +3466,14 @@ figure.wp-block-table.is-style-stripes {
|
|||
margin-top: 0;
|
||||
}
|
||||
|
||||
/* Block: Post Template ---------------- */
|
||||
|
||||
.wp-block-post-template,
|
||||
.wp-block-post-template > li {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.8-beta3-51230';
|
||||
$wp_version = '5.8-beta3-51231';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue