From 81a93e381ef04ec94258551ebf5a308fcd266308 Mon Sep 17 00:00:00 2001 From: Bryan Smith Date: Mon, 13 Jan 2020 09:56:07 -0800 Subject: [PATCH] Use c.16 font style for inputs to avoid tight text in textareas. --- components/input/Input.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/input/Input.jsx b/components/input/Input.jsx index c28042848..5249214c7 100644 --- a/components/input/Input.jsx +++ b/components/input/Input.jsx @@ -76,7 +76,7 @@ const Input = React.forwardRef(function Input(props, ref) { onKeyPress={handleKeyPress} onFocus={handleFocus} ref={ref || forwardedRef} - textStyle={variation === 'large' ? 'ui.18' : 'ui.16'} + textStyle={variation === 'large' ? 'c.18' : 'c.16'} underlineColor="blue4" {...inputProps} />