diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-10-05 04:10:28 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-10-05 04:10:28 +0800 |
commit | f9eba9d7e52d55180d4a86bbc0cd14682a190c5c (patch) | |
tree | 4c0d28d9a687f87f59e2ad998f07689521c99a08 | |
parent | c7d10affd553dbfd237346fae5de6862ec917e3a (diff) | |
download | tangerine-wallet-browser-f9eba9d7e52d55180d4a86bbc0cd14682a190c5c.tar.gz tangerine-wallet-browser-f9eba9d7e52d55180d4a86bbc0cd14682a190c5c.tar.zst tangerine-wallet-browser-f9eba9d7e52d55180d4a86bbc0cd14682a190c5c.zip |
Make popup a little taller
For some reason the popup was often cutting off the bottom buttons of the UI.
We should look at that more carefully later perhaps, but especially since we're considering moving off the popup, I'm just fixing it by making it taller for now.
-rw-r--r-- | app/scripts/lib/notifications.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 = { |