aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2021-07-24 20:46:13 +0200
committerMateja <mail@matejamaric.com>2021-07-24 20:46:13 +0200
commit83b0f4515fae17278bcae1dfd25ee08109124bc6 (patch)
tree9b5e16f93eec0eb6ddb4e00c566f7283f37230d2
parentfb5eb06bdd7f7a36a73a6f844006bc66c1b545e1 (diff)
downloadmevn-ecommerce-83b0f4515fae17278bcae1dfd25ee08109124bc6.tar.gz
mevn-ecommerce-83b0f4515fae17278bcae1dfd25ee08109124bc6.zip
Center product cards.
-rw-r--r--client/src/views/Home.vue2
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>