From 1b0fd139405e5389a5ddd2ba3460a1d1119dd0c9 Mon Sep 17 00:00:00 2001 From: Alex Windett Date: Wed, 11 Jan 2017 17:05:55 +0000 Subject: [PATCH] removing height on input component --- ui/src/components/input/index.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ui/src/components/input/index.js b/ui/src/components/input/index.js index 63fa5d72..0ced95fa 100644 --- a/ui/src/components/input/index.js +++ b/ui/src/components/input/index.js @@ -31,12 +31,11 @@ const InputField = styled.input` color: ${props => props.error ? colors.alert : colors.fonts.semibold} display: block; font-size: 16px; - height: ${remcalc(50)}; - padding: ${remcalc(16)}; + padding: ${remcalc('15 18')}; visibility: visible; width: 100%; ${baseBox()}; - border-color: ${props => props.error ? colors.alert : 'auto'}; + border-color: ${props => props.error ? colors.alert : ''}; &:focus { border-color: ${boxes.border.checked};