Product Card UI fixes
This commit is contained in:
parent
eefb7dc9bc
commit
ede86c2d4d
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"/js/admin.js": "/js/admin.js?id=f1263c1a00f0c20034d6",
|
||||
"/css/admin.css": "/css/admin.css?id=201f91bc553baa11139f"
|
||||
"/js/admin.js": "/js/admin.js",
|
||||
"/css/admin.css": "/css/admin.css"
|
||||
}
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
<?php
|
||||
|
||||
namespace Webkul\Shop\Http\Controllers;
|
||||
|
||||
use Webkul\Shop\Http\Controllers\Controller;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Http\Response;
|
||||
|
||||
/**
|
||||
* Subscription controller
|
||||
*
|
||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
||||
*/
|
||||
class SubscriptionController extends Controller
|
||||
{
|
||||
|
||||
/**
|
||||
* User object
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $user;
|
||||
|
||||
/**
|
||||
* Create a new controller instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->user = auth()->guard('customer')->user();
|
||||
|
||||
$this->_config = request('_config');
|
||||
}
|
||||
|
||||
/**
|
||||
* Display a listing of the resource.
|
||||
*
|
||||
* @param string $slug
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function index($email)
|
||||
{
|
||||
$this->validate(request(), [
|
||||
'email' => 'email'
|
||||
]);
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -345,6 +345,7 @@ input {
|
|||
grid-auto-rows: auto;
|
||||
grid-column-gap: 48px;
|
||||
grid-row-gap: 15px;
|
||||
justify-items: end;
|
||||
}
|
||||
|
||||
.product-grid-3 {
|
||||
|
|
@ -352,6 +353,7 @@ input {
|
|||
grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
|
||||
grid-gap: 27px;
|
||||
grid-auto-rows: auto;
|
||||
justify-items: center;
|
||||
}
|
||||
|
||||
.product-card {
|
||||
|
|
@ -402,6 +404,7 @@ input {
|
|||
margin-right: 10px;
|
||||
text-transform: uppercase;
|
||||
text-align: left;
|
||||
box-shadow: 1px 1px 0px #ccc;
|
||||
}
|
||||
|
||||
.add-to-wishlist {
|
||||
|
|
@ -422,6 +425,7 @@ input {
|
|||
padding: 4px 13px;
|
||||
font-size: 14px;
|
||||
color: #fff;
|
||||
box-shadow: 1px 1px 1px #cccccc;
|
||||
|
||||
&.sale {
|
||||
background: #FF6472;
|
||||
|
|
@ -433,6 +437,10 @@ input {
|
|||
}
|
||||
}
|
||||
|
||||
.product-card:hover {
|
||||
box-shadow: 1px 1px 10px #ccc;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 580px) {
|
||||
.main-container-wrapper {
|
||||
padding: 0px;
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"/js/ui.js": "/js/ui.js?id=b25a07d206dd0b89048f",
|
||||
"/css/ui.css": "/css/ui.css?id=856413ffffbe95f7b91d"
|
||||
"/js/ui.js": "/js/ui.js",
|
||||
"/css/ui.css": "/css/ui.css"
|
||||
}
|
||||
Loading…
Reference in New Issue