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.
This commit is contained in:
Michael Lange
2020-05-04 15:28:04 -07:00
parent e6e57557d2
commit d0d1c1fdef

View File

@@ -42,6 +42,7 @@ $icon-dimensions-large: 2rem;
&.is-#{$name} {
fill: $color;
color: $color;
}
}
}