Skip to content

Commit

Permalink
fixes to alignment styles
Browse files Browse the repository at this point in the history
  • Loading branch information
MaggieCabrera committed Feb 26, 2021
1 parent d54b035 commit 09dbe87
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mayland-blocks/assets/alignments.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ body {
}

.wp-site-blocks .alignfull {
transform: translateX(calc(0px - var(--wp--custom--width-horizontal)));
width: calc(100% + (2 * var(--wp--custom--width-horizontal)));
max-width: calc(100% + (2 * var(--wp--custom--width-horizontal)));
transform: translateX(calc(0px - var(--wp--custom--margin-horizontal)));
width: calc(100% + (2 * var(--wp--custom--margin-horizontal)));
max-width: calc(100% + (2 * var(--wp--custom--margin-horizontal)));
margin-left: 0;
margin-right: 0;
box-sizing: content-box;
Expand Down Expand Up @@ -72,7 +72,7 @@ body {

.wp-site-blocks .alignfull {
transform: translateX(0px);
width: 100% + var(--wp--custom--width-horizontal));
width: 100% + var(--wp--custom--width-horizontal);
max-width: calc(100% + var(--wp--custom--width-horizontal));
}
}

0 comments on commit 09dbe87

Please sign in to comment.