From a7e9953ec6bfc54aadbc34918192852fa27fcf20 Mon Sep 17 00:00:00 2001 From: Mohamed Wael Date: Wed, 15 Apr 2020 19:13:19 +0100 Subject: [PATCH] fix icons colour The icons' colours were hardcoded in the SVG file, now they are set to the theme primary colour --- src/configuration/ConfigurationPage.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/configuration/ConfigurationPage.tsx b/src/configuration/ConfigurationPage.tsx index 2704cd8be..8c4b742e6 100644 --- a/src/configuration/ConfigurationPage.tsx +++ b/src/configuration/ConfigurationPage.tsx @@ -76,7 +76,9 @@ const useStyles = makeStyles( margin: 0 }, icon: { - color: theme.palette.primary.main, + "& path":{ + fill:theme.palette.primary.main, + }, fontSize: 48 }, sectionDescription: {},