diff options
author | Chi Kei Chan <chikeichan@gmail.com> | 2017-10-25 16:08:14 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-10-25 16:08:14 +0800 |
commit | 0d522139ba7c5372e0ef4219a69a4b8e8f83706a (patch) | |
tree | 2dc7f1f1d1e49846838728ecc213ed54878cd138 /ui/app/components | |
parent | e263ae942170945c489e48c506fe11f3218976d4 (diff) | |
download | tangerine-wallet-browser-0d522139ba7c5372e0ef4219a69a4b8e8f83706a.tar tangerine-wallet-browser-0d522139ba7c5372e0ef4219a69a4b8e8f83706a.tar.gz tangerine-wallet-browser-0d522139ba7c5372e0ef4219a69a4b8e8f83706a.tar.bz2 tangerine-wallet-browser-0d522139ba7c5372e0ef4219a69a4b8e8f83706a.tar.lz tangerine-wallet-browser-0d522139ba7c5372e0ef4219a69a4b8e8f83706a.tar.xz tangerine-wallet-browser-0d522139ba7c5372e0ef4219a69a4b8e8f83706a.tar.zst tangerine-wallet-browser-0d522139ba7c5372e0ef4219a69a4b8e8f83706a.zip |
Fix gas input styling on mobile view
Diffstat (limited to 'ui/app/components')
-rw-r--r-- | ui/app/components/customize-gas-modal/index.js | 7 | ||||
-rw-r--r-- | ui/app/components/modals/modal.js | 7 |
2 files changed, 7 insertions, 7 deletions
diff --git a/ui/app/components/customize-gas-modal/index.js b/ui/app/components/customize-gas-modal/index.js index 710ee24c0..e5bfcfc63 100644 --- a/ui/app/components/customize-gas-modal/index.js +++ b/ui/app/components/customize-gas-modal/index.js @@ -198,7 +198,7 @@ CustomizeGasModal.prototype.render = function () { }) return h('div.send-v2__customize-gas', {}, [ - h('div', { + h('div.send-v2__customize-gas__content', { }, [ h('div.send-v2__customize-gas__header', {}, [ @@ -241,8 +241,9 @@ CustomizeGasModal.prototype.render = function () { ]), h('div.send-v2__customize-gas__revert', { - onClick: () => console.log('Revert'), - }, ['Revert']), + // onClick: () => console.log('Revert'), + }, ['']), + // }, ['Revert']), h('div.send-v2__customize-gas__buttons', [ h('div.send-v2__customize-gas__cancel', { diff --git a/ui/app/components/modals/modal.js b/ui/app/components/modals/modal.js index 88deb2bb0..e15dd6c1b 100644 --- a/ui/app/components/modals/modal.js +++ b/ui/app/components/modals/modal.js @@ -162,10 +162,9 @@ const MODALS = { h(CustomizeGasModal, {}, []), ], mobileModalStyle: { - width: '355px', - height: '598px', - // top: isPopupOrNotification() === 'popup' ? '52vh' : '36.5vh', - top: '5%', + width: '100vw', + height: '100vh', + top: '0', transform: 'none', left: '0', right: '0', |