#Line Clamp - Listbox Title

5 messages · Page 1 of 1 (latest)

crimson ice
#

Does anyone could use 'line-clamp-{n}' utility on title to "truncate" the text?

#

to achieve the "..."

#

this doesn't work. ```ts
title: cn({
'text-primary font-bold line-clamp-1':
item.href && location.pathname.includes(item.href)
})

#

and this works but not with the '...': ```ts
wrapper: 'line-clamp-1',
title: cn({
'text-primary font-bold':
item.href && location.pathname.includes(item.href)
})