From 7c9249396b22c02f3fac7abd53c3556f6bf88e75 Mon Sep 17 00:00:00 2001
From: Aymeric Chaumont <aymeric.chaumont@student-cs.fr>
Date: Fri, 22 Jul 2022 09:14:13 +0200
Subject: [PATCH] added important property to gradients

---
 frontend/src/styles/index.css | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/frontend/src/styles/index.css b/frontend/src/styles/index.css
index 118637c..0b200bf 100644
--- a/frontend/src/styles/index.css
+++ b/frontend/src/styles/index.css
@@ -2,9 +2,9 @@ body, html {
   color: white;
   text-align: center;
   background-color: #6359CE;
-  background-image: linear-gradient(to bottom, #6359CE, #6E83F9);
-  background-image: -moz-linear-gradient(to bottom, #6359CE, #6E83F9);
-  background-image: -webkit-linear-gradient(to bottom, #6359CE, #6E83F9);
+  background-image: linear-gradient(to bottom, #6359CE, #6E83F9) !important;
+  background-image: -moz-linear-gradient(to bottom, #6359CE, #6E83F9) !important;
+  background-image: -webkit-linear-gradient(to bottom, #6359CE, #6E83F9) !important;
 }
 
 .app{
-- 
GitLab