From bfafa3c674d9693bb410fcdc2005f65d3a98a49d Mon Sep 17 00:00:00 2001 From: Tom Kirkpatrick Date: Mon, 18 May 2020 13:52:56 +0200 Subject: [PATCH] fix(ui): disable address field overflow on amount form --- renderer/components/Pay/PayAddressField.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renderer/components/Pay/PayAddressField.js b/renderer/components/Pay/PayAddressField.js index c744d9a1b8e..9b2e4a33166 100644 --- a/renderer/components/Pay/PayAddressField.js +++ b/renderer/components/Pay/PayAddressField.js @@ -11,7 +11,7 @@ import { PAY_FORM_STEPS, PAYMENT_TYPES } from './constants' * Animation to handle showing/hiding the payReq field. */ const ShowHidePayReq = Keyframes.Spring({ - small: { height: 48 }, + small: { height: 48, resize: 'none', overflow: 'hidden' }, big: async (next, cancel, ownProps) => { ownProps.context.focusPayReqInput() await next({ height: 110, immediate: true })