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:
parent
20c003e842
commit
2029a33158
|
@ -6274,7 +6274,7 @@ a.to-the-top > * {
|
|||
|
||||
.wp-block-separator.is-style-wide {
|
||||
max-width: 120rem;
|
||||
width: 120rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Entry Content ------------------------- */
|
||||
|
|
|
@ -6378,7 +6378,7 @@ a.to-the-top > * {
|
|||
|
||||
.wp-block-separator.is-style-wide {
|
||||
max-width: 120rem;
|
||||
width: 120rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Entry Content ------------------------- */
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue