fixes buttons on receive section

This commit is contained in:
Gustavo Maximiliano Cortez 2015-01-06 16:10:28 -03:00
parent 632a73c809
commit 024a80d725
2 changed files with 14 additions and 7 deletions

View File

@ -536,6 +536,7 @@ a.button-setup {
.m10b {margin-bottom: 10px;}
.m15b {margin-bottom: 15px;}
.m20b {margin-bottom: 20px;}
.m30b {margin-bottom: 30px;}
.m10r {margin-right: 10px;}
.m15l {margin-left: 15px;}
.m15t {margin-top: 15px;}

View File

@ -50,13 +50,19 @@
</div>
</div>
<div class="large-12 columns">
<a class="button secondary tiny text-center right" ng-click="newAddr()" ng-disabled="loading">
Generate new address
</a>
<a class="button secondary tiny text-center" ng-click="toggleShowAll()" ng-disabled="loading">
<span ng-show="!showAll" translate>Show all my addresses</span>
<span ng-show="showAll" translate>Hide them</span>
</a>
<div class="row">
<div class="large-6 medium-6 small-6 columns">
<a class="button secondary tiny text-center right" ng-click="newAddr()" ng-disabled="loading">
Generate new address
</a>
</div>
<div class="large-6 medium-6 small-6 columns">
<a class="button secondary tiny text-center" ng-click="toggleShowAll()" ng-disabled="loading">
<span ng-show="!showAll" translate>Show all my addresses</span>
<span ng-show="showAll" translate>Hide them</span>
</a>
</div>
</div>
</div>
</div>
</div>