Refactor account name css - mobile views

feature/default_network_editable
sdtsui 7 years ago
parent 7cb031eeb9
commit 850d2124c8
  1. 7
      ui/app/components/tx-view.js
  2. 7
      ui/app/components/wallet-view.js
  3. 4
      ui/app/css/itcss/components/hero-balance.scss
  4. 6
      ui/app/css/itcss/components/newui-sections.scss

@ -78,11 +78,8 @@ TxView.prototype.render = function () {
}),
]),
h('span', {
style: {
fontSize: '1.2em',
marginLeft: '0.5em', // TODO: switch all units for this component to em
}
h('span.account-name', {
style: {}
}, [
'Account 1'
]),

@ -63,11 +63,8 @@ WalletView.prototype.render = function () {
}),
]),
h('span', {
style: {
fontSize: '1.2em',
marginLeft: '0.6em', // TODO: switch all units for this component to em
}
h('span.account-name', {
style: {}
}, [
'Account 1'
]),

@ -26,7 +26,7 @@ $break-large: 576px;
.token-amount {
font-size: 175%;
margin-top: 15%;
margin-top: 12.5%;
}
.fiat-amount {
@ -79,7 +79,7 @@ $break-large: 576px;
border: 1px solid;
@media screen and (max-width: $break-small) {
width: 22%;
width: 28%;
height: 55%;
}

@ -101,3 +101,9 @@
border: 1px solid;
}
}
// wallet view
.account-name {
font-size: 102%;
margin-left: 3%;
}

Loading…
Cancel
Save