Guest Checkout Page Fixed

This commit is contained in:
Devansh 2022-02-01 14:17:12 +05:30
parent 235294c042
commit 9b2c091c2c
4 changed files with 16 additions and 18 deletions

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
"/js/velocity.js": "/js/velocity.js?id=ac05caeb5e4b0566a4ab",
"/js/manifest.js": "/js/manifest.js?id=f801c7b774900481b564",
"/js/components.js": "/js/components.js?id=d16d70d3905f32644901",
"/css/velocity.css": "/css/velocity.css?id=075770f6dc71cf821f6c",
"/css/velocity.css": "/css/velocity.css?id=880f04c4d472c047a60d",
"/css/velocity-admin.css": "/css/velocity-admin.css?id=f492100e7b8496e7b32d",
"/images/Camera.svg": "/images/Camera.svg?id=b2fd2f9e17e1ccee96e2",
"/images/Icon-Calendar.svg": "/images/Icon-Calendar.svg?id=870d0f733a5837742276",

View File

@ -721,10 +721,6 @@ a {
text-decoration: none !important;
}
}
&.registration-btn{
margin-left: 10px;
}
}
.dropdown-icon::after {

View File

@ -18,20 +18,22 @@
</p>
{{ view_render_event('bagisto.shop.checkout.continue-shopping.before', ['order' => $order]) }}
<div class="row col-12 mt15">
<span class="mb30 mr10">
<a href="{{ route('shop.home.index') }}" class="theme-btn remove-decoration">
{{ __('shop::app.checkout.cart.continue-shopping') }}
</a>
</span>
<div class="mt15 row-col-12">
<a href="{{ route('shop.home.index') }}" class="theme-btn remove-decoration">
{{ __('shop::app.checkout.cart.continue-shopping') }}
</a>
@guest('customer')
<a href="{{ route('customer.register.index') }}" class="theme-btn registration-btn remove-decoration">
{{ __('shop::app.checkout.cart.continue-registration') }}
</a>
@endguest
</div>
@guest('customer')
<span class="">
<a href="{{ route('customer.register.index') }}" class="theme-btn remove-decoration">
{{ __('shop::app.checkout.cart.continue-registration') }}
</a>
</span>
@endguest
</div>
{{ view_render_event('bagisto.shop.checkout.continue-shopping.after', ['order' => $order]) }}
</div>
</div>
@endsection