diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-05-12 12:06:50 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-05-12 12:06:50 +0800 |
commit | 57280d4d79ab441b60cb57ca5c96f5b2389402d8 (patch) | |
tree | e96d2f03059d3a070d025057215dc648353cc174 /ui/app | |
parent | 4e9b829179f7724f581b208e2897fde79eed947b (diff) | |
download | tangerine-wallet-browser-57280d4d79ab441b60cb57ca5c96f5b2389402d8.tar tangerine-wallet-browser-57280d4d79ab441b60cb57ca5c96f5b2389402d8.tar.gz tangerine-wallet-browser-57280d4d79ab441b60cb57ca5c96f5b2389402d8.tar.bz2 tangerine-wallet-browser-57280d4d79ab441b60cb57ca5c96f5b2389402d8.tar.lz tangerine-wallet-browser-57280d4d79ab441b60cb57ca5c96f5b2389402d8.tar.xz tangerine-wallet-browser-57280d4d79ab441b60cb57ca5c96f5b2389402d8.tar.zst tangerine-wallet-browser-57280d4d79ab441b60cb57ca5c96f5b2389402d8.zip |
Fix css names
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/account-detail.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js index a71e85da8..89ca3003e 100644 --- a/ui/app/account-detail.js +++ b/ui/app/account-detail.js @@ -45,7 +45,7 @@ AccountDetailScreen.prototype.render = function() { h('.account-detail-section.flex-column.flex-grow', { style: { width: 330, - 'margin-top': 28, + 'marginTop': 28, }, }, [ @@ -75,20 +75,20 @@ AccountDetailScreen.prototype.render = function() { h('h2.font-medium.color-forest.flex-center', { style: { - 'padding-top': 8, - 'margin-bottom': 32, + 'paddingTop': 8, + 'marginBottom': 32, }, }, identity && identity.name), h('.flex-row.flex-space-between', { style: { - 'margin-bottom': 16, + 'marginBottom': 16, }, }, [ h('div', { style: { - 'line-height': 16, + 'lineHeight': 16, }, }, addressSummary(account.address)), @@ -110,7 +110,7 @@ AccountDetailScreen.prototype.render = function() { h('div', { style: { - 'line-height': 50, + 'lineHeight': 50, }, }, formatBalance(account.balance)), |