bug fixes
This commit is contained in:
parent
fbd3e10352
commit
c36c98a5be
|
|
@ -2,13 +2,10 @@
|
|||
|
||||
namespace Webkul\API\Http\Controllers\Shop;
|
||||
|
||||
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
|
||||
use Illuminate\Support\Facades\Password;
|
||||
|
||||
class ForgotPasswordController extends Controller
|
||||
{
|
||||
use SendsPasswordResetEmails;
|
||||
|
||||
/**
|
||||
* Store a newly created resource in storage.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -2,13 +2,10 @@
|
|||
|
||||
namespace Webkul\User\Http\Controllers;
|
||||
|
||||
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
|
||||
use Illuminate\Support\Facades\Password;
|
||||
|
||||
class ForgetPasswordController extends Controller
|
||||
{
|
||||
use SendsPasswordResetEmails;
|
||||
|
||||
/**
|
||||
* Contains route related configuration
|
||||
*
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"/js/velocity.js": "/js/velocity.js?id=8800d2830d2fa9f0254d",
|
||||
"/css/velocity-admin.css": "/css/velocity-admin.css?id=612d35e452446366eef7",
|
||||
"/css/velocity.css": "/css/velocity.css?id=f672523a022f64a07558"
|
||||
"/css/velocity.css": "/css/velocity.css?id=d81e6ff285145a3d2833"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -138,6 +138,13 @@ body {
|
|||
|
||||
#cart-modal-content {
|
||||
left: 0;
|
||||
|
||||
.small-card-container {
|
||||
.rango-close {
|
||||
left: unset;
|
||||
right: -10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.category-list-container{
|
||||
|
|
@ -283,12 +290,41 @@ body {
|
|||
left: 15px;
|
||||
}
|
||||
|
||||
.mini-cart-content {
|
||||
~ .down-arrow-container {
|
||||
.rango-arrow-down {
|
||||
left: -15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.alert-dismissible {
|
||||
.close {
|
||||
left: -8px;
|
||||
}
|
||||
}
|
||||
|
||||
.booking-information {
|
||||
.book-slots {
|
||||
.control-group-container {
|
||||
.form-group:not(.quantity).date:after {
|
||||
left: 40px;
|
||||
right: unset;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.full-content-wrapper {
|
||||
> .container-fluid {
|
||||
> .row {
|
||||
&.pl-26 {
|
||||
padding-right: 26% !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Shared
|
||||
.text-right {
|
||||
text-align: left !important;
|
||||
|
|
@ -322,5 +358,11 @@ body {
|
|||
.ml-5 {
|
||||
margin-right: 3rem !important;
|
||||
}
|
||||
.mr15 {
|
||||
margin-left: 15px !important;
|
||||
}
|
||||
.ml5 {
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -10,7 +10,10 @@
|
|||
<shimmer-component v-if="isLoading && !isMobileView"></shimmer-component>
|
||||
|
||||
<template v-else-if="newProducts.length > 0">
|
||||
<card-list-header heading="{{ __('shop::app.home.new-products') }}">
|
||||
<card-list-header
|
||||
row-class="pl-26"
|
||||
heading="{{ __('shop::app.home.new-products') }}"
|
||||
>
|
||||
</card-list-header>
|
||||
|
||||
{!! view_render_event('bagisto.shop.new-products.before') !!}
|
||||
|
|
|
|||
|
|
@ -2,8 +2,12 @@
|
|||
@inject ('productRatingHelper', 'Webkul\Product\Helpers\Review')
|
||||
@inject ('productImageHelper', 'Webkul\Product\Helpers\ProductImage')
|
||||
|
||||
@php
|
||||
$direction = core()->getCurrentLocale()->direction;
|
||||
@endphp
|
||||
|
||||
<recently-viewed
|
||||
add-class="{{ isset($addClass) ? $addClass : '' }}"
|
||||
add-class="{{ isset($addClass) ? $addClass . " $direction": '' }}"
|
||||
quantity="{{ isset($quantity) ? $quantity : null }}"
|
||||
add-class-wrapper="{{ isset($addClassWrapper) ? $addClassWrapper : '' }}">
|
||||
</recently-viewed>
|
||||
|
|
|
|||
Loading…
Reference in New Issue