web: components: Fixed displaying high characters (ex.'g') on huge size in TextInput

This commit is contained in:
Alexey Safronov 2019-09-30 13:26:08 +03:00
parent 59f2fb3c68
commit 335027c9c1

View File

@ -38,7 +38,7 @@ const StyledInput = styled(Input).attrs((props) => ({
(props.size === 'base' && '20px') ||
(props.size === 'middle' && '20px') ||
(props.size === 'big' && '20px') ||
(props.size === 'huge' && '20px')
(props.size === 'huge' && '21px')
};
font-size: ${props =>
(props.size === 'base' && '13px') ||