From 67d4e5a7717105df274cab6be2b726ee378576c0 Mon Sep 17 00:00:00 2001 From: Andrew Wang Date: Tue, 4 Sep 2018 15:04:45 -0500 Subject: [PATCH] feat(text-input): add primary and hover colors to toggle SVG --- src/components/text-input/_text-input.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/text-input/_text-input.scss b/src/components/text-input/_text-input.scss index a938454ff9f9..2411baf0f25d 100644 --- a/src/components/text-input/_text-input.scss +++ b/src/components/text-input/_text-input.scss @@ -90,6 +90,14 @@ background: none; cursor: pointer; outline: inherit; + + svg { + fill: $brand-01; + + &:hover { + fill: $hover-primary; + } + } } }