diff options
author | Chi Kei Chan <chikeichan@gmail.com> | 2017-10-25 15:24:26 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-10-25 15:24:26 +0800 |
commit | 7c10cda8a4f8423a95f4c64024b07572d76dc266 (patch) | |
tree | 8993315f5e28af132870c31233182f05cd8e86d6 /ui/app/components | |
parent | 311ca1f3ca52ca4a4f45098ba3a0a5750ae9d3c6 (diff) | |
download | tangerine-wallet-browser-7c10cda8a4f8423a95f4c64024b07572d76dc266.tar tangerine-wallet-browser-7c10cda8a4f8423a95f4c64024b07572d76dc266.tar.gz tangerine-wallet-browser-7c10cda8a4f8423a95f4c64024b07572d76dc266.tar.bz2 tangerine-wallet-browser-7c10cda8a4f8423a95f4c64024b07572d76dc266.tar.lz tangerine-wallet-browser-7c10cda8a4f8423a95f4c64024b07572d76dc266.tar.xz tangerine-wallet-browser-7c10cda8a4f8423a95f4c64024b07572d76dc266.tar.zst tangerine-wallet-browser-7c10cda8a4f8423a95f4c64024b07572d76dc266.zip |
Fix alignment on right arrow of confirm tx screens
Diffstat (limited to 'ui/app/components')
-rw-r--r-- | ui/app/components/pending-tx/confirm-send-ether.js | 2 | ||||
-rw-r--r-- | ui/app/components/pending-tx/confirm-send-token.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/pending-tx/confirm-send-ether.js b/ui/app/components/pending-tx/confirm-send-ether.js index 64da630f6..2f178f179 100644 --- a/ui/app/components/pending-tx/confirm-send-ether.js +++ b/ui/app/components/pending-tx/confirm-send-ether.js @@ -194,7 +194,7 @@ ConfirmSendEther.prototype.render = function () { this.inputs = [] return ( - h('div.confirm-screen-container', { + h('div.confirm-screen-container.confirm-send-ether', { style: { minWidth: '355px' }, }, [ // Main Send token Card diff --git a/ui/app/components/pending-tx/confirm-send-token.js b/ui/app/components/pending-tx/confirm-send-token.js index cc4c5f5f4..abb7a0770 100644 --- a/ui/app/components/pending-tx/confirm-send-token.js +++ b/ui/app/components/pending-tx/confirm-send-token.js @@ -263,7 +263,7 @@ ConfirmSendToken.prototype.render = function () { this.inputs = [] return ( - h('div.confirm-screen-container', { + h('div.confirm-screen-container.confirm-send-token', { style: { minWidth: '355px' }, }, [ // Main Send token Card |