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, toast: true,
position: 'bottom-end', position: 'bottom-end',
html: ` html: `
<div class="d-flex flex-column"> <div class="d-flex flex-column p-0 m-0">
<p class="fs-big">Total presupuesto</p> <p class="m-0">Total presupuesto</p>
<span class="badge badge-label-primary fs-large">${value}</span> <span class="badge badge-label-primary fs-small">${value}</span>
</div>`, </div>`,
customClass: { customClass: {
popup: 'bg-primary text-white', popup: 'bg-primary text-white',
}, },
target: target, target: target,
height : "100px",
width : "200px",
padding : '1px',
allowEscapeKey: false, allowEscapeKey: false,
showConfirmButton: false, showConfirmButton: false,
timer: 0, timer: 0,