File size: 884 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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
@import "@wordpress/base-styles/breakpoints";
@import "@wordpress/base-styles/mixins";
.signup__step.is-difm-page-picker {
.step-wrapper.is-horizontal-layout {
justify-content: space-around;
margin-top: 25px;
@include break-small {
margin-top: 64px;
max-width: 1227px;
}
.step-wrapper__header {
min-width: auto;
margin-bottom: 65px;
@include break-small {
min-width: 410px;
width: 410px;
}
.formatted-header__subtitle {
font-size: 0.875rem;
}
.step-wrapper__header-button {
margin-top: 10px;
@media (max-width: $break-small) {
margin-top: 34px;
}
.refund-text {
@media (max-width: $break-small) {
display: none;
}
}
}
.step-wrapper__header-content {
.refund-text {
margin: 5px 0;
@media (min-width: $break-small) {
display: none;
}
}
}
}
}
}
|