Skip to content

Commit 4c40623

Browse files
committed
Add mobile styles
1 parent 0e0331a commit 4c40623

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/cart/cart-item.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { useState } from 'react';
1+
import React, { useEffect, useState } from 'react';
22
import {isEmpty} from "lodash";
33
import Image from '../image';
44
import { deleteCartItem, updateCart } from '../../utils/cart';

src/components/cart/cart-items-container.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const CartItemsContainer = () => {
2525
return (
2626
<div className="content-wrap-cart">
2727
{ cart ? (
28-
<div className="woo-next-cart-table-row grid grid-cols-3 gap-4">
28+
<div className="woo-next-cart-table-row grid lg:grid-cols-3 gap-4">
2929
{/*Cart Items*/ }
3030
<div className="woo-next-cart-table lg:col-span-2 mb-md-0 mb-5">
3131
{ cartItems.length &&

0 commit comments

Comments
 (0)