diff options
author | Alexander Tseung <alextsg@gmail.com> | 2018-01-14 06:59:16 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2018-01-16 10:26:16 +0800 |
commit | 644adeccf6b5365ef2c8c9a5ba69b90fdaa1f2ec (patch) | |
tree | d50ca807a1ca5bfc7e351202f2f1fa17fbdc02f8 /ui/app/components | |
parent | 85b201210618a059c9a86a7aeeea75176b5d31c4 (diff) | |
download | tangerine-wallet-browser-644adeccf6b5365ef2c8c9a5ba69b90fdaa1f2ec.tar tangerine-wallet-browser-644adeccf6b5365ef2c8c9a5ba69b90fdaa1f2ec.tar.gz tangerine-wallet-browser-644adeccf6b5365ef2c8c9a5ba69b90fdaa1f2ec.tar.bz2 tangerine-wallet-browser-644adeccf6b5365ef2c8c9a5ba69b90fdaa1f2ec.tar.lz tangerine-wallet-browser-644adeccf6b5365ef2c8c9a5ba69b90fdaa1f2ec.tar.xz tangerine-wallet-browser-644adeccf6b5365ef2c8c9a5ba69b90fdaa1f2ec.tar.zst tangerine-wallet-browser-644adeccf6b5365ef2c8c9a5ba69b90fdaa1f2ec.zip |
Fix Hide Token modal styling, popup positioning
Diffstat (limited to 'ui/app/components')
-rw-r--r-- | ui/app/components/modals/hide-token-confirmation-modal.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/modals/hide-token-confirmation-modal.js b/ui/app/components/modals/hide-token-confirmation-modal.js index fa3ad0b1e..56c7ba299 100644 --- a/ui/app/components/modals/hide-token-confirmation-modal.js +++ b/ui/app/components/modals/hide-token-confirmation-modal.js @@ -58,12 +58,12 @@ HideTokenConfirmationModal.prototype.render = function () { ]), h('div.hide-token-confirmation__buttons', {}, [ - h('button.btn-clear', { + h('button.btn-cancel.hide-token-confirmation__button', { onClick: () => hideModal(), }, [ 'CANCEL', ]), - h('button.btn-clear', { + h('button.btn-clear.hide-token-confirmation__button', { onClick: () => hideToken(address), }, [ 'HIDE', |