From 794194e86f26dc9c7a1a43de316ed1979533f42c Mon Sep 17 00:00:00 2001 From: Jack Mallers Date: Wed, 4 Oct 2017 18:35:58 -0500 Subject: [PATCH] fix(payform): input styles --- app/components/Form/PayForm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Form/PayForm.js b/app/components/Form/PayForm.js index 3d93da5f..5f84cc71 100644 --- a/app/components/Form/PayForm.js +++ b/app/components/Form/PayForm.js @@ -63,7 +63,7 @@ class PayForm extends Component { isLn ? { width: '75%', fontSize: '85px' } : - { width: `${amount.length > 1 ? (amount.length * 15) - 5 : 25}%`, fontSize: `${190 - (amount.length ** 2)}px` } + { width: `${amount.length > 1 ? (amount.length * 20) - 5 : 25}%`, fontSize: `${190 - (amount.length ** 2)}px` } } value={currentAmount} onChange={event => setPayAmount(event.target.value)}