Merge branch 'fix/toast-width-total-presupuesto' into 'main'

reduce size toast total presupuesto

See merge request jjimenez/safekat!553
This commit is contained in:
Alvaro
2025-02-20 07:37:07 +00:00

View File

@ -47,14 +47,17 @@ export const toastPresupuestoSummary = (value, target = 'body') => {
toast: true,
position: 'bottom-end',
html: `
<div class="d-flex flex-column">
<p class="fs-big">Total presupuesto</p>
<span class="badge badge-label-primary fs-large">${value}</span>
<div class="d-flex flex-column p-0 m-0">
<p class="m-0">Total presupuesto</p>
<span class="badge badge-label-primary fs-small">${value}</span>
</div>`,
customClass: {
popup: 'bg-primary text-white',
},
target: target,
height : "100px",
width : "200px",
padding : '1px',
allowEscapeKey: false,
showConfirmButton: false,
timer: 0,