Fix the alert icon -- should be white on a purple circle

This commit is contained in:
Tessa Kelly 2019-03-28 14:22:14 -07:00
parent 777587bc31
commit ab0230c0c5

View File

@ -33,8 +33,9 @@ error : String -> Html msg
error content =
alert
[ iconContainer
[ Css.color Colors.purple
, Css.height (Css.px 20)
[ Css.color Colors.white
, Css.backgroundColor Colors.purple
, Css.Global.children [ Css.Global.svg [ Css.maxHeight (Css.px 13) ] ]
]
(NriSvg.toHtml exclamationMark)
, viewAlertContent Colors.purpleDark content