Skip to content

Commit

Permalink
fix(Home): add Bootstrap's grid classes
Browse files Browse the repository at this point in the history
  • Loading branch information
aneurysmjs committed Jul 14, 2019
1 parent 6064560 commit 9983c2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/app/pages/Home/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ class Home extends Component<PropsType> {
<div className="home">
<h2 className="home__title">Shop</h2>
<div className="home__wrapper">
<div className="home__products">
<div className="row">
{ products.map(product => (
<div
// eslint-disable-next-line no-underscore-dangle
key={product._id}
className="home__product-card"
className="col-12 col-sm-12 col-md-3 col-lg-3 col-xl-3"
>
<ProductCard
width="20rem"
Expand Down
2 changes: 0 additions & 2 deletions src/app/pages/Home/Home.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,4 @@
display: flex;
justify-content: space-around;
}

@include element(product-card) {}
}

0 comments on commit 9983c2c

Please sign in to comment.