File size: 556 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | @import "@wordpress/base-styles/breakpoints";
@import "@wordpress/base-styles/mixins";
.signup__step .is-site-options,
.signup__step .is-difm-store-options,
.signup__step .is-difm-options {
.step-wrapper__content {
@include break-small {
flex-basis: 50%;
}
}
.step-wrapper.is-horizontal-layout {
@include break-small {
margin-top: 15vh;
}
}
}
.signup__step .is-store-options {
.step-wrapper__header {
@include break-small {
flex-basis: 40%;
}
}
.step-wrapper__content {
@include break-small {
flex-basis: 50%;
}
}
}
|