Display return to cart link on mobile devices (#48103)

* Display return to cart link on mobile devices

* Add changelog entry
This commit is contained in:
Niels Lange 2024-06-10 16:25:47 +02:00 committed by GitHub
parent 5b06493a5c
commit 1167b54a3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 2 deletions

View File

@ -26,13 +26,18 @@
.is-mobile {
.wc-block-checkout__actions {
.wc-block-components-checkout-return-to-cart-button {
display: none;
.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;
}
}
}

View File

@ -0,0 +1,4 @@
Significance: minor
Type: update
Display return to cart link on mobile devices.