From 7405cb333f72359428a7cd499c3170f9f795a6a0 Mon Sep 17 00:00:00 2001
From: El Yaagoubi Bilel <bilel.el-yaagoubi@student-cs.fr>
Date: Fri, 10 Jun 2022 12:40:51 +0200
Subject: [PATCH] center text

---
 frontend/src/views/Home.vue | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/frontend/src/views/Home.vue b/frontend/src/views/Home.vue
index 5064a88..b4e4dce 100644
--- a/frontend/src/views/Home.vue
+++ b/frontend/src/views/Home.vue
@@ -25,7 +25,7 @@
   <div class="movie-affichage">
     <li v-for="movie in movies" :key="movie.id">
       <p class="name">
-        <h5> {{ movie.title }}</h5>
+        <h5 class="center"> {{ movie.title }}</h5>
       </p>
       <p class="film">
         <router-link :to="'/movie/'+ movie.id">
@@ -140,4 +140,7 @@ li {
 .corps {
   display: flex;
 }
+.center {
+  text-align: center;
+}
 </style>
-- 
GitLab