CSS Issues Fixed
This commit is contained in:
parent
2992f682a6
commit
bd5025cc66
|
|
@ -6,7 +6,6 @@
|
|||
|
||||
@section('page-detail-wrapper')
|
||||
<div class="account-head mb-15">
|
||||
<span class="back-icon"><a href="{{ route('customer.account.index') }}"><i class="icon icon-menu-back"></i></a></span>
|
||||
<span class="account-heading">{{ __('shop::app.customer.account.address.edit.title') }}</span>
|
||||
<span></span>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -6,38 +6,50 @@
|
|||
{{ __('shop::app.customer.account.wishlist.page-title') }}
|
||||
@endsection
|
||||
|
||||
@push('css')
|
||||
{{--
|
||||
@devansh-webkul
|
||||
|
||||
- Handle it from scss when removing back icon.
|
||||
--}}
|
||||
<style>
|
||||
.account-head {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
</style>
|
||||
@endpush
|
||||
|
||||
@section('page-detail-wrapper')
|
||||
<div class="account-head">
|
||||
<span class="account-heading">{{ __('shop::app.customer.account.wishlist.title') }}</span>
|
||||
|
||||
@if (count($items))
|
||||
<div class="account-action float-right">
|
||||
<span class="account-action">
|
||||
<form id="remove-all-wishlist" class="d-none" action="{{ route('customer.wishlist.removeall') }}" method="POST">
|
||||
@method('DELETE')
|
||||
|
||||
@csrf
|
||||
</form>
|
||||
|
||||
@if ($isSharingEnabled)
|
||||
<a
|
||||
class="remove-decoration theme-btn light"
|
||||
href="javascript:void(0);"
|
||||
@click="window.showShareWishlistModal();">
|
||||
{{ __('shop::app.customer.account.wishlist.share') }}
|
||||
</a>
|
||||
|
||||
|
||||
@endif
|
||||
|
||||
<a
|
||||
class="remove-decoration theme-btn light"
|
||||
href="javascript:void(0);"
|
||||
onclick="document.getElementById('remove-all-wishlist').submit();">
|
||||
{{ __('shop::app.customer.account.wishlist.deleteall') }}
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="account-action float-right w-10"> </div>
|
||||
|
||||
@if ($isSharingEnabled)
|
||||
<div class="account-action float-right">
|
||||
<a
|
||||
class="remove-decoration theme-btn light"
|
||||
href="javascript:void(0);"
|
||||
@click="window.showShareWishlistModal();">
|
||||
{{ __('shop::app.customer.account.wishlist.share') }}
|
||||
</a>
|
||||
</div>
|
||||
@endif
|
||||
</span>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue