|
@@ -26,8 +26,14 @@ Friendly Business Editor Styles
|
|
|
$main-block-selector: ".wp-block[data-align=\"#{$alignment}\"]";
|
|
|
}
|
|
|
|
|
|
+ $template-selector: "";
|
|
|
+ @if $alignment == "full" {
|
|
|
+ $template-selector: ".wp-block[data-type=\"a8c/template\"],";
|
|
|
+ }
|
|
|
+
|
|
|
@return "
|
|
|
#{$main-block-selector},
|
|
|
+ #{$template-selector}
|
|
|
.wp-block[data-type=\"a8c/post-content\"] #{$main-block-selector}";
|
|
|
}
|
|
|
|
|
@@ -36,13 +42,11 @@ Friendly Business Editor Styles
|
|
|
body {
|
|
|
background: $color__background-body;
|
|
|
|
|
|
- .wp-block[data-type="a8c/template"],
|
|
|
.wp-block[data-align="full"] {
|
|
|
width: 100%;
|
|
|
}
|
|
|
|
|
|
@include media(mobile) {
|
|
|
- .wp-block[data-type="a8c/template"],
|
|
|
#{get-block-selector("full")} {
|
|
|
width: calc( 100% + 90px );
|
|
|
max-width: calc( 100% + 90px );
|
|
@@ -67,7 +71,6 @@ body {
|
|
|
width: 100%;
|
|
|
}
|
|
|
|
|
|
- .wp-block[data-type="a8c/template"],
|
|
|
#{get-block-selector("full")} {
|
|
|
position: relative;
|
|
|
left: calc( -12.5% - 14px );
|
|
@@ -111,7 +114,6 @@ body {
|
|
|
width: 100%;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
/** === Base Typography === */
|
|
|
|
|
|
body {
|