fix(home): better styling for multisig numbers on home view

This commit is contained in:
Jason Dreyzehner 2016-10-21 00:52:39 -04:00
parent 8db31ac9ad
commit 0472dd7f35
2 changed files with 12 additions and 3 deletions

View File

@ -85,4 +85,13 @@
color: #666;
font-size: 38px;
}
.tab-home {
&__wallet {
&__multisig-number {
font-size: .8rem;
font-weight: 300;
color: $light-gray;
}
}
}
}

View File

@ -74,9 +74,6 @@
</i>
<span>
{{wallet.name || wallet.id}}
<span class="size-12 text-light" ng-if="wallet.n > 1">
{{wallet.m}}-of-{{wallet.n}}
</span>
</span>
<p>
<span ng-if="!wallet.isComplete()" class="assertive" translate>
@ -85,6 +82,9 @@
<span ng-if="wallet.isComplete()">
<span ng-if="!wallet.balanceHidden">{{wallet.status.availableBalanceStr}}</span>
<span ng-if="wallet.balanceHidden" translate>[Balance Hidden]</span>
<span class="tab-home__wallet__multisig-number" ng-if="wallet.n > 1">
{{wallet.m}}-of-{{wallet.n}}
</span>
</span>
&nbsp;
</p>