added padding to wallet icon in wallet list

This commit is contained in:
Jamal Jackson 2016-09-30 13:55:14 -04:00
commit 82a40fe4a0
2 changed files with 8 additions and 1 deletions

View file

@ -53,7 +53,7 @@
<a ui-sref="tabs.add"><i class="icon ion-ios-plus-empty list-add-button"></i></a>
</div>
<a ng-repeat="wallet in wallets track by $index"
class="item item-icon-left item-big-icon-left item-icon-right"
class="item item-icon-left item-big-icon-left item-icon-right wallet"
ng-click="openWallet(wallet)">
<i class="icon big-icon-svg">
<img src="img/icon-wallet.svg" ng-style="{'background-color': wallet.color}" class="bg"/>

View file

@ -48,6 +48,13 @@
width:0;
}
}
&.wallet{
.big-icon-svg{
& > .bg{
padding: .25rem
}
}
}
}
}