aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>