text inside {{payment.lastappointment}} if its too long will go beyond the card borders is there any trick to make follow the card borders (text will array in lines when no more width to accommodate the whole text)??
<q-card-section>
<div class="row ">
<div class="col-8 col-shrink "><div style= "min-width: 200px; width: 200px" class="text-container">Work Done: {{payment.lastappointment }}</div></div>
<div class="col-4"></div>
</div> <div class="text-caption text-right text-grey">{{paymentdateAdded(payment.paymentdate)}}</div>
<div v-if="$q.screen.gt.xs">
<div><q-badge color="green" >Money Paid: {{formatPrice(payment.moneypaid)}} {{payment.currencypaid}}</q-badge></div>
<div><q-badge color="orange" >Total To Pay: {{formatPrice(payment.moneyhavetopay)}} {{payment.currencyhavetopay}}</q-badge></div>
</div>
<div v-else>
<div><q-badge color="green" >Paid: {{formatPrice(payment.moneypaid)}} {{payment.currencypaid}}</q-badge></div>
<div><q-badge color="orange" >Total: {{formatPrice(payment.moneyhavetopay)}} {{payment.currencyhavetopay}}</q-badge></div>
</div>
</q-card-section>