Merge pull request #327 from MetaMask/uiFixes

fix button positioning && mailto link
This commit is contained in:
kumavis 2016-06-25 12:39:26 -07:00 committed by GitHub
commit 36c7ffa585
2 changed files with 3 additions and 5 deletions

View File

@ -228,10 +228,8 @@ app sections
font-size: 1em; font-size: 1em;
height: 31px; height: 31px;
} }
.editable-label{
.editable-button{ display: flex;
position: relative;
bottom: 2px;
} }
/* Webkit */ /* Webkit */
.unlock-screen input::-webkit-input-placeholder { .unlock-screen input::-webkit-input-placeholder {

View File

@ -97,9 +97,9 @@ InfoScreen.prototype.render = function () {
h('div.fa.fa-envelope', [ h('div.fa.fa-envelope', [
h('a.info', { h('a.info', {
href: 'mailto:hello@metamask.io?subject=Feedback',
target: '_blank', target: '_blank',
style: { width: '85vw' }, style: { width: '85vw' },
onClick () { chrome.tabs.create({url: 'mailto:help@metamask.io?subject=Feedback'}) },
}, 'Email us any questions or comments!'), }, 'Email us any questions or comments!'),
]), ]),