This commit is contained in:
2024-11-20 20:09:03 +05:00
parent e5a71ca04e
commit 019e3c5ba1
2 changed files with 5 additions and 1 deletions

View File

@@ -84,7 +84,7 @@ async function fetchCardHistory(passport_serie, passport_id, card_number, card_e
let insideTemplate = ``; let insideTemplate = ``;
Array.from(result.transactions).map(transaction => { Array.from(result.transactions).map(transaction => {
insideTemplate += `<li style="background: #a3c1f5;color: black;" class="p-3 relative rounded-lg mb-2"> insideTemplate += `<li style="background: #a3c1f5;color: black;padding-top: 2.4em;" class="p-3 relative rounded-lg mb-2">
<strong>${transaction['actionName']}</strong> <strong>${transaction['opersum']}</strong> <strong>${transaction['currency']}</strong> <strong>${transaction['actionName']}</strong> <strong>${transaction['opersum']}</strong> <strong>${transaction['currency']}</strong>
<strong style="top: 0; right: 0;" class="absolute p-2">${transaction['opername']}</strong> <strong style="top: 0; right: 0;" class="absolute p-2">${transaction['opername']}</strong>

View File

@@ -58,6 +58,10 @@
right: 2em; right: 2em;
} }
#card-history-details {
width: 300px;
}
.credit-card { .credit-card {
margin-bottom: 2em; margin-bottom: 2em;
} }