aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/app/components/wallet-view.js9
-rw-r--r--ui/app/main-container.js6
2 files changed, 7 insertions, 8 deletions
diff --git a/ui/app/components/wallet-view.js b/ui/app/components/wallet-view.js
index 3a08705be..f425ec3d1 100644
--- a/ui/app/components/wallet-view.js
+++ b/ui/app/components/wallet-view.js
@@ -35,10 +35,9 @@ WalletView.prototype.render = function () {
h('div.flex-row.flex-center', {
style: {
- // marginLeft: '5px',
- // marginRight: '5px',
- // marginTop: '10px',
- // alignItems: 'center',
+ marginLeft: '35px',
+ marginRight: '35px',
+ marginTop: '35px',
}
}, [
@@ -52,7 +51,7 @@ WalletView.prototype.render = function () {
h('span', {
style: {
fontSize: '1.5em',
- marginLeft: '5px',
+ marginLeft: '10px', // TODO: switch all units for this component to em
}
}, [
'Account 1'
diff --git a/ui/app/main-container.js b/ui/app/main-container.js
index f64009539..f891402ac 100644
--- a/ui/app/main-container.js
+++ b/ui/app/main-container.js
@@ -23,15 +23,15 @@ MainContainer.prototype.render = function () {
}, [
h(WalletView, {
style: {
- flexGrow: 1,
- height: '82vh',
+ // width: '33.33%',
+ // height: '82vh',
}
}, [
]),
h('div.tx-view', {
style: {
- flexGrow: 2,
+ width: '66.66%',
height: '82vh',
background: '#FFFFFF',
}