Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix(ui): disable address field overflow on amount form
Browse files Browse the repository at this point in the history
  • Loading branch information
mrfelton committed May 18, 2020
1 parent 8ca422b commit bfafa3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renderer/components/Pay/PayAddressField.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 })
Expand Down

0 comments on commit bfafa3c

Please sign in to comment.