aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-01-11 13:09:09 +0800
committerAlexander Tseung <alextsg@gmail.com>2018-01-11 13:09:09 +0800
commit208e94d3bfdaf5ab6f279fb2000f1a3d14920b1b (patch)
treecb3580f55af74228f97c50714bbb517331b445f2 /ui/app/components
parent3b2a519d46b44b819c799741d44bc94022f4b6ed (diff)
downloadtangerine-wallet-browser-208e94d3bfdaf5ab6f279fb2000f1a3d14920b1b.tar.gz
tangerine-wallet-browser-208e94d3bfdaf5ab6f279fb2000f1a3d14920b1b.tar.zst
tangerine-wallet-browser-208e94d3bfdaf5ab6f279fb2000f1a3d14920b1b.zip
Update main view styling
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/balance-component.js2
-rw-r--r--ui/app/components/token-cell.js2
-rw-r--r--ui/app/components/tx-view.js14
3 files changed, 5 insertions, 13 deletions
diff --git a/ui/app/components/balance-component.js b/ui/app/components/balance-component.js
index 50007ce14..d591ab455 100644
--- a/ui/app/components/balance-component.js
+++ b/ui/app/components/balance-component.js
@@ -40,7 +40,7 @@ BalanceComponent.prototype.render = function () {
// style: {},
// }),
h(Identicon, {
- diameter: 45,
+ diameter: 50,
address: token && token.address,
network,
}),
diff --git a/ui/app/components/token-cell.js b/ui/app/components/token-cell.js
index 677b66830..59552f4a0 100644
--- a/ui/app/components/token-cell.js
+++ b/ui/app/components/token-cell.js
@@ -106,7 +106,7 @@ TokenCell.prototype.render = function () {
h(Identicon, {
className: 'token-list-item__identicon',
- diameter: 45,
+ diameter: 50,
address,
network,
}),
diff --git a/ui/app/components/tx-view.js b/ui/app/components/tx-view.js
index e42a20c85..7bddbbef4 100644
--- a/ui/app/components/tx-view.js
+++ b/ui/app/components/tx-view.js
@@ -68,18 +68,14 @@ TxView.prototype.renderButtons = function () {
return !selectedToken
? (
h('div.flex-row.flex-center.hero-balance-buttons', [
- h('button.btn-clear', {
- style: {
- textAlign: 'center',
- },
+ h('button.hero-balance-button', {
onClick: () => showModal({
name: 'BUY',
}),
}, 'DEPOSIT'),
- h('button.btn-clear', {
+ h('button.hero-balance-button', {
style: {
- textAlign: 'center',
marginLeft: '0.8em',
},
onClick: showSendPage,
@@ -88,11 +84,7 @@ TxView.prototype.renderButtons = function () {
)
: (
h('div.flex-row.flex-center.hero-balance-buttons', [
- h('button.btn-clear', {
- style: {
- textAlign: 'center',
- marginLeft: '0.8em',
- },
+ h('button.hero-balance-button', {
onClick: showSendTokenPage,
}, 'SEND'),
])