1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Add spacing in line items

This commit is contained in:
Frankie 2016-06-08 19:08:55 -04:00
parent 03e9ff6e42
commit 1987296af0
2 changed files with 6 additions and 4 deletions

View File

@ -439,5 +439,7 @@ input.large-input {
font-family: 'Transat Standard', Arial; font-family: 'Transat Standard', Arial;
font-weight: bolder; font-weight: bolder;
padding-bottom: 10px; padding-bottom: 10px;
display: inline-block;
padding-left: 5px;
} }

View File

@ -69,11 +69,11 @@ InfoScreen.prototype.render = function() {
h('div',{ h('div',{
style: { style: {
paddingLeft: '25px', paddingLeft: '30px',
}}, }},
[ [
h('div', [ h('div', [
h('a.info', { h('a', {
href: 'https://metamask.io/', href: 'https://metamask.io/',
target: '_blank', target: '_blank',
onClick(event) { this.navigateTo(event.target.href) }, onClick(event) { this.navigateTo(event.target.href) },
@ -81,9 +81,9 @@ InfoScreen.prototype.render = function() {
h('img.icon-size', { h('img.icon-size', {
src: manifest.icons[128] src: manifest.icons[128]
}), }),
h('.info',{ h('div.info',{
style: { style: {
display: 'inherit', fontWeight: 800,
} }
},'Visit our web site') },'Visit our web site')
]) ])