removing height on input component

This commit is contained in:
Alex Windett 2017-01-11 17:05:55 +00:00
parent 56d9a5ba46
commit 1b0fd13940
1 changed files with 2 additions and 3 deletions

View File

@ -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};