1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

Revert style name fixes that broke styles

This commit is contained in:
Dan Finlay 2016-05-11 21:26:09 -07:00
parent 57280d4d79
commit b628df017f

View File

@ -45,7 +45,7 @@ AccountDetailScreen.prototype.render = function() {
h('.account-detail-section.flex-column.flex-grow', {
style: {
width: 330,
'marginTop': 28,
'margin-top': 28,
},
}, [
@ -75,20 +75,20 @@ AccountDetailScreen.prototype.render = function() {
h('h2.font-medium.color-forest.flex-center', {
style: {
'paddingTop': 8,
'marginBottom': 32,
'padding-top': 8,
'margin-bottom': 32,
},
}, identity && identity.name),
h('.flex-row.flex-space-between', {
style: {
'marginBottom': 16,
'margin-bottom': 16,
},
}, [
h('div', {
style: {
'lineHeight': 16,
'line-height': 16,
},
}, addressSummary(account.address)),
@ -110,7 +110,7 @@ AccountDetailScreen.prototype.render = function() {
h('div', {
style: {
'lineHeight': 50,
'line-height': 50,
},
}, formatBalance(account.balance)),