Skip to content

Commit b4c750a

Browse files
committed
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
1 parent 68f5aa6 commit b4c750a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/wp-content/themes/twentytwenty/style-rtl.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6274,7 +6274,7 @@ a.to-the-top > * {
62746274

62756275
.wp-block-separator.is-style-wide {
62766276
max-width: 120rem;
6277-
width: 120rem;
6277+
width: 100%;
62786278
}
62796279

62806280
/* Entry Content ------------------------- */

src/wp-content/themes/twentytwenty/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6378,7 +6378,7 @@ a.to-the-top > * {
63786378

63796379
.wp-block-separator.is-style-wide {
63806380
max-width: 120rem;
6381-
width: 120rem;
6381+
width: 100%;
63826382
}
63836383

63846384
/* Entry Content ------------------------- */

0 commit comments

Comments
 (0)