diff options
author | kumavis <kumavis@users.noreply.github.com> | 2016-06-26 03:39:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-26 03:39:26 +0800 |
commit | 36c7ffa585f85179458e3ff874a4e821772b6524 (patch) | |
tree | f30f51dd7dbe413b8944b230d14660a4c1a2fd61 /ui/app | |
parent | 36a183db94e66999421980f50c2ab2e8d1ce2c3b (diff) | |
parent | ab55fefa1a4ebeaa9a42756a72d49b63f036b946 (diff) | |
download | tangerine-wallet-browser-36c7ffa585f85179458e3ff874a4e821772b6524.tar tangerine-wallet-browser-36c7ffa585f85179458e3ff874a4e821772b6524.tar.gz tangerine-wallet-browser-36c7ffa585f85179458e3ff874a4e821772b6524.tar.bz2 tangerine-wallet-browser-36c7ffa585f85179458e3ff874a4e821772b6524.tar.lz tangerine-wallet-browser-36c7ffa585f85179458e3ff874a4e821772b6524.tar.xz tangerine-wallet-browser-36c7ffa585f85179458e3ff874a4e821772b6524.tar.zst tangerine-wallet-browser-36c7ffa585f85179458e3ff874a4e821772b6524.zip |
Merge pull request #327 from MetaMask/uiFixes
fix button positioning && mailto link
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/css/index.css | 6 | ||||
-rw-r--r-- | ui/app/info.js | 2 |
2 files changed, 3 insertions, 5 deletions
diff --git a/ui/app/css/index.css b/ui/app/css/index.css index f0e7dc794..24497a66f 100644 --- a/ui/app/css/index.css +++ b/ui/app/css/index.css @@ -228,10 +228,8 @@ app sections font-size: 1em; height: 31px; } - -.editable-button{ - position: relative; - bottom: 2px; +.editable-label{ + display: flex; } /* Webkit */ .unlock-screen input::-webkit-input-placeholder { diff --git a/ui/app/info.js b/ui/app/info.js index 32b5a22e8..a473f5921 100644 --- a/ui/app/info.js +++ b/ui/app/info.js @@ -97,9 +97,9 @@ InfoScreen.prototype.render = function () { h('div.fa.fa-envelope', [ h('a.info', { - href: 'mailto:hello@metamask.io?subject=Feedback', target: '_blank', style: { width: '85vw' }, + onClick () { chrome.tabs.create({url: 'mailto:help@metamask.io?subject=Feedback'}) }, }, 'Email us any questions or comments!'), ]), |