From 81fe3c67c5d70e69aa2d965a41afd7331cd4fb76 Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Tue, 2 Jun 2020 17:53:32 +0200 Subject: fix duplicate id in svg, empty alt in base email --- client/src/sass/include/_mixins.scss | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'client/src/sass/include/_mixins.scss') diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss index 80a090159..0b558a3f5 100644 --- a/client/src/sass/include/_mixins.scss +++ b/client/src/sass/include/_mixins.scss @@ -49,23 +49,23 @@ @mixin apply-svg-color ($color) { ::ng-deep svg { - path[fill="#000000"], - g[fill="#000000"], - rect[fill="#000000"], - circle[fill="#000000"], - polygon[fill="#000000"] { + path[fill="#000"], + g[fill="#000"], + rect[fill="#000"], + circle[fill="#000"], + polygon[fill="#000"] { fill: $color; } - path[stroke="#000000"], - g[stroke="#000000"], - rect[stroke="#000000"], - circle[stroke="#000000"], - polygon[stroke="#000000"] { + path[stroke="#000"], + g[stroke="#000"], + rect[stroke="#000"], + circle[stroke="#000"], + polygon[stroke="#000"] { stroke: $color; } - stop[stop-color="#000000"] { + stop[stop-color="#000"] { stop-color: $color; } } -- cgit v1.2.3