File size: 627 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 | @import "@wordpress/base-styles/breakpoints";
@import "@wordpress/base-styles/mixins";
.payment-method-delete-primary-confirmation {
&__separator {
margin: 24px 0;
}
&__card {
font-size: 0.875rem;
&-title {
font-weight: bold;
}
&-details {
display: flex;
margin-top: 1rem;
& > div {
margin-right: 32px;
}
&-loader {
width: 100%;
height: 30px;
@include placeholder( --color-neutral-10 );
@include break-mobile {
width: 50%;
}
}
&-logo {
svg {
filter: grayscale(100%);
}
}
}
}
&__notice {
margin: 1rem 0 0;
font-size: 1rem;
}
}
|