aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-05-12 12:26:09 +0800
committerDan Finlay <dan@danfinlay.com>2016-05-12 12:26:09 +0800
commitb628df017f14c38f68c3048ef503ce8722f07f3b (patch)
tree2032a7c0a20d7d4ab8c428ae4b050df1fefcfb09 /ui
parent57280d4d79ab441b60cb57ca5c96f5b2389402d8 (diff)
downloadtangerine-wallet-browser-b628df017f14c38f68c3048ef503ce8722f07f3b.tar
tangerine-wallet-browser-b628df017f14c38f68c3048ef503ce8722f07f3b.tar.gz
tangerine-wallet-browser-b628df017f14c38f68c3048ef503ce8722f07f3b.tar.bz2
tangerine-wallet-browser-b628df017f14c38f68c3048ef503ce8722f07f3b.tar.lz
tangerine-wallet-browser-b628df017f14c38f68c3048ef503ce8722f07f3b.tar.xz
tangerine-wallet-browser-b628df017f14c38f68c3048ef503ce8722f07f3b.tar.zst
tangerine-wallet-browser-b628df017f14c38f68c3048ef503ce8722f07f3b.zip
Revert style name fixes that broke styles
Diffstat (limited to 'ui')
-rw-r--r--ui/app/account-detail.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js
index 89ca3003e..a71e85da8 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,
- '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)),