From d0d1c1fdef55b798df4f7aa83e7f71dd809c0509 Mon Sep 17 00:00:00 2001 From: Michael Lange Date: Mon, 4 May 2020 15:28:04 -0700 Subject: [PATCH] Set color in addition to fill for the icon class Structure icons have fill set to currentColor hardcored in their markup. This mean setting fill to a color in CSS does nothing, but setting color now does. --- ui/app/styles/core/icon.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/app/styles/core/icon.scss b/ui/app/styles/core/icon.scss index 3a4973125..d2b499d50 100644 --- a/ui/app/styles/core/icon.scss +++ b/ui/app/styles/core/icon.scss @@ -42,6 +42,7 @@ $icon-dimensions-large: 2rem; &.is-#{$name} { fill: $color; + color: $color; } } }