28 lines
758 B
SCSS
28 lines
758 B
SCSS
@import "./style";
|
|
|
|
.editor-styles-wrapper .is-layout-constrained > .wc-block-editor-customer-account.alignright {
|
|
@include flex-justify-content(flex-end);
|
|
}
|
|
|
|
.editor-styles-wrapper .is-layout-constrained > .wc-block-editor-customer-account.alignleft {
|
|
@include flex-justify-content(flex-start);
|
|
}
|
|
|
|
.editor-styles-wrapper .is-layout-constrained > .wc-block-editor-customer-account.aligncenter {
|
|
@include flex-justify-content(center);
|
|
}
|
|
|
|
.wc-block-editor-customer-account {
|
|
display: flex;
|
|
padding: em($gap-smaller) em($gap-smaller);
|
|
}
|
|
|
|
.wc-block-editor-customer-account__icon-style-toggle {
|
|
width: 100%;
|
|
}
|
|
|
|
/* In sidebar without tabs (WP <=6.1) */
|
|
.block-editor-block-card + div > .wc-block-editor-customer-account__link {
|
|
padding: 0 $gap $gap 52px;
|
|
}
|