diff options
author | kumavis <kumavis@users.noreply.github.com> | 2016-10-05 07:36:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-05 07:36:59 +0800 |
commit | e5bf957242b1d443ef15b588340dba1a5e34b92a (patch) | |
tree | 8ca772797be9b3481063c97ed1772b0902d657de | |
parent | 43dd3a5d7233338e82800d8e547c8c9113051423 (diff) | |
parent | ffe8ec2b89c8e5cec52475c9b59b60de2ef42efd (diff) | |
download | tangerine-wallet-browser-e5bf957242b1d443ef15b588340dba1a5e34b92a.tar tangerine-wallet-browser-e5bf957242b1d443ef15b588340dba1a5e34b92a.tar.gz tangerine-wallet-browser-e5bf957242b1d443ef15b588340dba1a5e34b92a.tar.bz2 tangerine-wallet-browser-e5bf957242b1d443ef15b588340dba1a5e34b92a.tar.lz tangerine-wallet-browser-e5bf957242b1d443ef15b588340dba1a5e34b92a.tar.xz tangerine-wallet-browser-e5bf957242b1d443ef15b588340dba1a5e34b92a.tar.zst tangerine-wallet-browser-e5bf957242b1d443ef15b588340dba1a5e34b92a.zip |
Merge pull request #696 from MetaMask/SmallerCopiedButton
Formatting Fixes
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | app/scripts/lib/notifications.js | 2 | ||||
-rw-r--r-- | ui/app/first-time/create-vault-complete.js | 1 |
3 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cdfcd99c..0ab4166cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## Current Master +- Decreased vault confirmation button font size to help some Linux users who could not see it. +- Made popup a little taller because it would sometimes cut off buttons. + ## 2.13.2 2016-10-4 - Fix bug where chosen FIAT exchange rate does no persist when switching networks diff --git a/app/scripts/lib/notifications.js b/app/scripts/lib/notifications.js index 422f46f6d..cd7535232 100644 --- a/app/scripts/lib/notifications.js +++ b/app/scripts/lib/notifications.js @@ -1,5 +1,5 @@ const extension = require('./extension') -const height = 500 +const height = 520 const width = 360 const notifications = { diff --git a/ui/app/first-time/create-vault-complete.js b/ui/app/first-time/create-vault-complete.js index 0ca0a1b22..2b5413955 100644 --- a/ui/app/first-time/create-vault-complete.js +++ b/ui/app/first-time/create-vault-complete.js @@ -61,6 +61,7 @@ CreateVaultCompleteScreen.prototype.render = function () { onClick: () => this.confirmSeedWords(), style: { margin: '24px', + fontSize: '0.9em', }, }, 'I\'ve copied it somewhere safe'), ]) |