49 lines
739 B
SCSS
49 lines
739 B
SCSS
.wc-block-checkout__actions {
|
|
|
|
&_row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
.wc-block-components-checkout-place-order-button {
|
|
width: 50%;
|
|
padding: 1em;
|
|
height: auto;
|
|
|
|
&--full-width {
|
|
width: 100%;
|
|
}
|
|
|
|
.wc-block-components-button__text {
|
|
> svg {
|
|
fill: $white;
|
|
vertical-align: top;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.is-mobile {
|
|
.wc-block-checkout__actions {
|
|
|
|
.wc-block-checkout__actions_row {
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.wc-block-components-checkout-place-order-button {
|
|
width: 100%;
|
|
}
|
|
|
|
.wc-block-components-checkout-return-to-cart-button {
|
|
margin: $gap auto;
|
|
}
|
|
}
|
|
}
|
|
|
|
.is-large {
|
|
.wc-block-checkout__actions {
|
|
padding: 0 0 $gap-largest 0;
|
|
}
|
|
}
|