Removed border when there is only one currency

This commit is contained in:
rockstardev 2019-03-03 16:14:21 -06:00 committed by Rockstar Developer
parent 349c3409df
commit 358f1ffc43
2 changed files with 11 additions and 6 deletions

View file

@ -71,12 +71,11 @@
}
else
{
<div class="payment__currencies">
<div class="payment__currencies_noborder">
<img v-bind:src="srvModel.cryptoImage" />
<span>{{srvModel.paymentMethodName}} ({{srvModel.cryptoCode}})</span>
<span v-show="srvModel.isLightning">&#9889;</span>
</div>
}
<div class="payment__spinner">
<partial name="Checkout-Spinner" />

View file

@ -55,10 +55,16 @@
padding: 6px;
}
.payment__currencies img {
margin-top: -3px;
height: 24px;
}
.payment__currencies_noborder {
font-size: 13px;
border-radius: 5px;
padding: 6px;
}
.payment__currencies img , .payment__currencies_noborder img{
margin-top: -3px;
height: 24px;
}
.payment__currencies:hover .clickable_underline {
border-bottom: 1px dotted black;