fixed border on home tab
This commit is contained in:
parent
b0f2356b49
commit
cf0f323880
2 changed files with 33 additions and 8 deletions
|
|
@ -43,7 +43,7 @@
|
||||||
<ion-spinner icon="lines"></ion-spinner>
|
<ion-spinner icon="lines"></ion-spinner>
|
||||||
<div translate>Updating activity. Please stand by</div>
|
<div translate>Updating activity. Please stand by</div>
|
||||||
</span>
|
</span>
|
||||||
<a class="item" ng-repeat="x in notifications" ng-click="x.action()">
|
<a class="item activity" ng-repeat="x in notifications" ng-click="x.action()">
|
||||||
<span ng-include="'views/includes/walletActivity.html'"></span>
|
<span ng-include="'views/includes/walletActivity.html'"></span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -119,28 +119,28 @@
|
||||||
<div class="item item-heading" translate>
|
<div class="item item-heading" translate>
|
||||||
Next steps
|
Next steps
|
||||||
</div>
|
</div>
|
||||||
<a ng-show="!wallets[0]" ui-sref="tabs.add" class="item item-icon-left item-big-icon-left item-icon-right next-step">
|
<a ng-if="!wallets[0]" ui-sref="tabs.add" class="item item-icon-left item-big-icon-left item-icon-right next-step">
|
||||||
<i class="icon big-icon-svg">
|
<i class="icon big-icon-svg">
|
||||||
<div class="bg icon-create-wallet"></div>
|
<div class="bg icon-create-wallet"></div>
|
||||||
</i>
|
</i>
|
||||||
<span translate>Create a bitcoin wallet</span>
|
<span translate>Create a bitcoin wallet</span>
|
||||||
<i class="icon nav-item-arrow-right"></i>
|
<i class="icon nav-item-arrow-right"></i>
|
||||||
</a>
|
</a>
|
||||||
<a ui-sref="bitpayCard.main" ng-show="!externalServices.BitpayCard" class="item item-icon-left item-big-icon-left item-icon-right next-step">
|
<a ui-sref="bitpayCard.main" ng-if="!externalServices.BitpayCard" class="item item-icon-left item-big-icon-left item-icon-right next-step">
|
||||||
<i class="icon big-icon-svg">
|
<i class="icon big-icon-svg">
|
||||||
<div class="bg icon-bitpay-card"></div>
|
<div class="bg icon-bitpay-card"></div>
|
||||||
</i>
|
</i>
|
||||||
<span translate>Add BitPay Card</span>
|
<span translate>Add BitPay Card</span>
|
||||||
<i class="icon nav-item-arrow-right"></i>
|
<i class="icon nav-item-arrow-right"></i>
|
||||||
</a>
|
</a>
|
||||||
<a ng-show="!externalServices.BuyAndSell" ui-sref="tabs.buyandsell" class="item item-icon-left item-big-icon-left item-icon-right next-step">
|
<a ng-if="!externalServices.BuyAndSell" ui-sref="tabs.buyandsell" class="item item-icon-left item-big-icon-left item-icon-right next-step">
|
||||||
<i class="icon big-icon-svg">
|
<i class="icon big-icon-svg">
|
||||||
<div class="bg icon-buy-bitcoin"></div>
|
<div class="bg icon-buy-bitcoin"></div>
|
||||||
</i>
|
</i>
|
||||||
<span translate>Buy or Sell Bitcoin</span>
|
<span translate>Buy or Sell Bitcoin</span>
|
||||||
<i class="icon nav-item-arrow-right"></i>
|
<i class="icon nav-item-arrow-right"></i>
|
||||||
</a>
|
</a>
|
||||||
<a ui-sref="tabs.giftcards.amazon" ng-show="!externalServices.AmazonGiftCards" class="item item-icon-left item-big-icon-left item-icon-right next-step">
|
<a ui-sref="tabs.giftcards.amazon" ng-if="!externalServices.AmazonGiftCards" class="item item-icon-left item-big-icon-left item-icon-right next-step">
|
||||||
<i class="icon big-icon-svg">
|
<i class="icon big-icon-svg">
|
||||||
<div class="bg icon-gift"></div>
|
<div class="bg icon-gift"></div>
|
||||||
</i>
|
</i>
|
||||||
|
|
|
||||||
|
|
@ -11,9 +11,34 @@
|
||||||
.icon-gift {
|
.icon-gift {
|
||||||
background-image: url("../img/icon-gift.svg");
|
background-image: url("../img/icon-gift.svg");
|
||||||
}
|
}
|
||||||
|
.card{
|
||||||
a.item {
|
.item {
|
||||||
color: #444;
|
color: #444;
|
||||||
|
border-top:none;
|
||||||
|
padding-top: 1.5rem;
|
||||||
|
padding-bottom: 1.5rem;
|
||||||
|
&:before {
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
width: 86%;
|
||||||
|
height: 1px;
|
||||||
|
background: rgba(221, 221, 221, 0.3);
|
||||||
|
top:0;
|
||||||
|
right:0;
|
||||||
|
content:'';
|
||||||
|
}
|
||||||
|
&.item-heading{
|
||||||
|
&:before{
|
||||||
|
width:100%;
|
||||||
|
top:99%
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&:nth-child(2){
|
||||||
|
&:before{
|
||||||
|
width:0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.next-step {
|
.next-step {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue