Twenty-Twenty: Fix a width/alignement issue on "Wide Line" Separator style variation.

This change fixes an alignement issue on the "Wide Line" Separator style variation on front-end, especially when used inside a column block. It changes the block `width` value from `120rem` to `100%` to avoid container overflowing.

Props kjellr, matthiaspabst, sabernhardt, audrasjb.
Fixes #53643.

Built from https://develop.svn.wordpress.org/trunk@53475


git-svn-id: http://core.svn.wordpress.org/trunk@53064 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
audrasjb 2022-06-07 05:23:09 +00:00
parent 20c003e842
commit 2029a33158
3 changed files with 3 additions and 3 deletions

View File

@ -6274,7 +6274,7 @@ a.to-the-top > * {
.wp-block-separator.is-style-wide {
max-width: 120rem;
width: 120rem;
width: 100%;
}
/* Entry Content ------------------------- */

View File

@ -6378,7 +6378,7 @@ a.to-the-top > * {
.wp-block-separator.is-style-wide {
max-width: 120rem;
width: 120rem;
width: 100%;
}
/* Entry Content ------------------------- */

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.1-alpha-53474';
$wp_version = '6.1-alpha-53475';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.