File size: 1,148 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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | @import "@wordpress/base-styles/breakpoints";
@import "@wordpress/base-styles/mixins";
.payment-method-add {
&__wrapper {
margin-inline: 0;
}
&__wrapper .card-heading {
display: inline-block;
margin-top: 1rem;
margin-bottom: 2rem;
color: var(--studio-gray-100);
}
&__content {
@include break-large {
display: flex;
}
}
&__form,
&__image {
display: flex;
flex-direction: column;
flex: 1;
}
&__image {
display: none;
@include break-large {
display: flex;
align-items: center;
}
svg {
max-width: 80%;
}
}
&__navigation-buttons {
display: flex;
flex-wrap: wrap;
flex-direction: column-reverse;
margin-top: 1.5rem;
gap: 16px;
@include break-large {
flex-direction: row;
}
}
&__notice {
margin: 1rem 0 0;
font-size: 1rem;
}
&__back-button {
width: 100%;
font-size: 1rem;
@include break-large {
width: auto;
}
}
&__submit-button {
.checkout-steps__submit-button-wrapper {
padding: 0;
}
button {
&.checkout-button {
border-radius: var(--jetpack-corners-soft);
}
}
}
.assign-license-step-progress {
margin-bottom: 40px;
}
}
|