mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-20 13:34:37 +01:00
Removed border when there is only one currency
This commit is contained in:
parent
349c3409df
commit
358f1ffc43
2 changed files with 11 additions and 6 deletions
|
@ -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">⚡</span>
|
||||
</div>
|
||||
|
||||
}
|
||||
<div class="payment__spinner">
|
||||
<partial name="Checkout-Spinner" />
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue