From 58b2fd76c7baa0507fd30348c6d99e883a3ae219 Mon Sep 17 00:00:00 2001 From: Aymeric Chaumont <aymeric.chaumont@student-cs.fr> Date: Fri, 22 Jul 2022 09:33:50 +0200 Subject: [PATCH] removed 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 0b200bf..ac45b17 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) !important; - background-image: -moz-linear-gradient(to bottom, #6359CE, #6E83F9) !important; - background-image: -webkit-linear-gradient(to bottom, #6359CE, #6E83F9) !important; + 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)g; } .app{ -- GitLab