Replace fixed text length with css line-clamp (#96)

This commit is contained in:
mchev
2024-06-05 14:36:32 +02:00
committed by GitHub
parent bf5a8cdb28
commit 592a537379
15 changed files with 18 additions and 27 deletions

View File

@@ -201,7 +201,6 @@
<router-link :to="{ path: `recurring-invoices/${row.data.id}/view` }">
<BaseText
:text="row.data.customer.name"
:length="30"
tag="span"
class="font-medium text-primary-500 flex flex-col"
/>
@@ -212,7 +211,6 @@
? row.data.customer.contact_name
: ''
"
:length="30"
tag="span"
class="text-xs text-gray-400"
/>

View File

@@ -262,7 +262,6 @@ onSearched = debounce(onSearched, 500)
<div class="flex-2">
<BaseText
:text="invoice.customer.name"
:length="30"
class="
pr-2
mb-2