Styling for tabs on create new wallet

This commit is contained in:
Gustavo Maximiliano Cortez 2015-05-20 10:36:01 -03:00
commit d0604331bd
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
2 changed files with 33 additions and 7 deletions

View file

@ -21,15 +21,13 @@
</div>
</div>
<div class="row m20b">
<div class="create-tab">
<a href
class="small-6 medium-6 large-6 columns text-center"
ng-class="{'text-gray': totalCopayers == 1}"
ng-click="create.setTotalCopayers(1)">Personal</a>
ng-class="{'selected': totalCopayers == 1}"
ng-click="create.setTotalCopayers(1)" translate>Personal Wallet</a>
<a href
class="small-6 medium-6 large-6 columns text-center"
ng-class="{'text-gray': totalCopayers != 1}"
ng-click="create.setTotalCopayers(3)">Multisignature</a>
ng-class="{'selected': totalCopayers != 1}"
ng-click="create.setTotalCopayers(3)" translate>Shared Wallet</a>
</div>
<form name="setupForm" ng-submit="create.create(setupForm)" novalidate>