From 93ad8b3233f60a93ad2071352df8820878813956 Mon Sep 17 00:00:00 2001 From: Ivan Diaz Date: Fri, 1 Jul 2016 19:37:42 -0300 Subject: [PATCH] [Max Red] - Added error property to Input tag :D --- client/src/core-components/input.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/core-components/input.scss b/client/src/core-components/input.scss index dfd7be3a..4e5066f9 100644 --- a/client/src/core-components/input.scss +++ b/client/src/core-components/input.scss @@ -44,7 +44,7 @@ padding: 8px 12px; border-bottom-left-radius: 3px; border-top-left-radius: 3px; - background-color: #eee; + background-color: $light-grey; } .input__text { @@ -54,13 +54,13 @@ &_with-error { .input__error { - color: red; + color: $primary-red; font-size: $font-size--sm; display: block; position: absolute; } .input__text { - border: 1px solid red; + border: 1px solid $primary-red; } }