RTL cancel button in order section #3521

This commit is contained in:
Akhtar Khan 2020-07-23 16:05:36 +05:30
parent 0da8d86904
commit 398fa8032c
2 changed files with 10 additions and 1 deletions

View File

@ -3308,6 +3308,10 @@ section.review {
margin-top: 5.5%;
margin-bottom: 5.5%;
a.btn.btn-lg.btn-primary{
float: right;
}
.sidebar {
display: flex;
flex-direction: column;
@ -3564,6 +3568,7 @@ section.review {
}
}
.account-items-list , .edit-form {
margin-top: 20px;
@ -4333,6 +4338,10 @@ section.review {
float: left;
}
a.btn.btn-lg.btn-primary{
float: left;
}
.account-item-card {
.media-info .info {
margin-right: 20px;

View File

@ -21,7 +21,7 @@
@if ($order->canCancel())
<a href="{{ route('customer.orders.cancel', $order->id) }}" class="btn btn-lg btn-primary" v-alert:message="'{{ __('shop::app.customer.account.order.view.cancel-confirm-msg') }}'" style="float: right">
<a href="{{ route('customer.orders.cancel', $order->id) }}" class="btn btn-lg btn-primary" v-alert:message="'{{ __('shop::app.customer.account.order.view.cancel-confirm-msg') }}'">
{{ __('shop::app.customer.account.order.view.cancel-btn-title') }}
</a>
@endif