Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions static/components/payment-dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,10 @@ window.app.component('tpos-payment-dialog', {
v-text="tipSummary"
></span>
</div>
<q-chip v-if="nfcTagReading && !isOnchain" square>
<q-avatar icon="nfc" color="positive" text-color="white"></q-avatar>
NFC supported
<q-chip square v-if="nfcTagReading && !isOnchain" label="NFC supported" icon="nfc" color="positive" text-color="white">
</q-chip>
<q-chip square v-else-if="!isOnchain" label="NFC not supported" icon="nfc_off" text-color="grey">
</q-chip>
<div
v-else-if="!isOnchain"
class="text-caption text-grey"
v-text="'NFC not supported'"
></div>
</q-card-section>

<q-card-actions align="between" class="q-pt-none">
Expand Down
4 changes: 2 additions & 2 deletions templates/tpos/_cart.html
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ <h5 v-show="!denomIsSats" class="q-mt-none q-mb-sm">
<div @click="addToCart(item)">
<q-badge
v-if="itemCartQty(item.id) > 0"
class="z-top q-ma-sm"
class="z-marginals q-ma-sm"
color="primary"
:label="itemCartQty(item.id)"
floating
Expand Down Expand Up @@ -243,7 +243,7 @@ <h5 v-show="!denomIsSats" class="q-mt-none q-mb-sm">
<div @click="addToCart(item)">
<q-badge
v-if="itemCartQty(item.id) > 0"
class="z-top q-ma-sm"
class="z-marginals q-ma-sm"
color="primary"
:label="itemCartQty(item.id)"
floating
Expand Down
2 changes: 1 addition & 1 deletion templates/tpos/dialogs.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
>
<q-card
v-if="invoiceDialog.data"
class="q-pa-lg q-pt-xl lnbits__dialog-card"
class="q-pa-lg q-pt-xl lnbits__dialog-card full-width"
style="max-height: 90vh"
>
<div
Expand Down
Loading