diff options
author | Mateja <mail@matejamaric.com> | 2021-07-24 20:46:13 +0200 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2021-07-24 20:46:13 +0200 |
commit | 83b0f4515fae17278bcae1dfd25ee08109124bc6 (patch) | |
tree | 9b5e16f93eec0eb6ddb4e00c566f7283f37230d2 /client | |
parent | fb5eb06bdd7f7a36a73a6f844006bc66c1b545e1 (diff) | |
download | mevn-ecommerce-83b0f4515fae17278bcae1dfd25ee08109124bc6.tar.gz mevn-ecommerce-83b0f4515fae17278bcae1dfd25ee08109124bc6.zip |
Center product cards.
Diffstat (limited to 'client')
-rw-r--r-- | client/src/views/Home.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/views/Home.vue b/client/src/views/Home.vue index a71d2cb..f93042d 100644 --- a/client/src/views/Home.vue +++ b/client/src/views/Home.vue @@ -1,5 +1,5 @@ <template> - <div class="row mt-5"> + <div class="row mt-5 d-flex justify-content-center"> <div v-for="product in products" :key="product._id" class="col-lg-3 col-md-4 col-sm-6"> <ProductCard :Id="product._id" :Name="product.name" :Price="product.price" :Img="product.imagePath"/> </div> |