Final Fixed the Add address Button In Customer Account Section #3475

This commit is contained in:
Akhtar Khan 2020-07-16 18:09:44 +05:30
parent f114ba2dcb
commit 606d42c0a3
1 changed files with 10 additions and 1 deletions

View File

@ -6,7 +6,7 @@
@section('page-detail-wrapper')
@if ($addresses->isEmpty())
<a href="{{ route('customer.address.create') }}" class="theme-btn light unset pull-right">
<a href="{{ route('customer.address.create') }}" class="theme-btn light unset address-button">
{{ __('shop::app.customer.account.address.index.add') }}
</a>
@endif
@ -80,3 +80,12 @@
}
</script>
@endpush
@if ($addresses->isEmpty())
<style>
.address-button {
position: absolute;
margin-top: 92px;
}
</style>
@endif