mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
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. git-svn-id: https://develop.svn.wordpress.org/trunk@53475 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
68f5aa6ea4
commit
b4c750afe4
@ -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 ------------------------- */
|
||||
|
||||
Loading…
Reference in New Issue
Block a user