mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-21 22:11:48 +01:00
PoS UI fix: scale-down item image (#4076)
This commit is contained in:
parent
e22e522245
commit
db2c29a6e1
2 changed files with 8 additions and 2 deletions
|
@ -27,7 +27,7 @@
|
|||
</script>
|
||||
|
||||
<script id="template-cart-item-image" type="text/template">
|
||||
<img src="{image}" width="50" alt="">
|
||||
<img class="cart-item-image" src="{image}" alt="">
|
||||
</script>
|
||||
|
||||
<script id="template-cart-custom-amount" type="text/template">
|
||||
|
|
|
@ -17,7 +17,13 @@
|
|||
.card-img-top {
|
||||
width: 100%;
|
||||
max-height: 180px;
|
||||
object-fit: cover;
|
||||
object-fit: scale-down;
|
||||
}
|
||||
|
||||
.cart-item-image {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
object-fit: scale-down;
|
||||
}
|
||||
|
||||
.js-cart-added {
|
||||
|
|
Loading…
Add table
Reference in a new issue