Skip to content

Commit 8a487ce

Browse files
committed
Margin bottom products
1 parent dfdab99 commit 8a487ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Footer/Stickynav.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import Hamburger from './Hamburger.component';
1313
const Stickynav = () => (
1414
<nav
1515
id="footer"
16-
className="fixed bottom-0 z-50 w-full md:hidden mt-8"
16+
className="fixed bottom-0 z-50 w-full md:hidden"
1717
>
1818
<div className="container flex flex-wrap items-center justify-between px-6 py-3 mx-auto mt-0 md:min-w-96 bg-blue-800">
1919
<Hamburger />

src/components/Product/DisplayProducts.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ interface IDisplayProductsProps {
4848

4949
const DisplayProducts = ({ products }: IDisplayProductsProps) => (
5050
<section className="container mx-auto bg-white">
51-
<div id="product-container" className="flex flex-wrap items-center">
51+
<div id="product-container" className="flex flex-wrap items-center mb-12 md:mb-0">
5252
{products ? (
5353
products.map(
5454
({

0 commit comments

Comments
 (0)