Truncate titles in taskdrawer (#84)

This commit is contained in:
Matt Rubens 2025-06-06 22:42:44 -07:00 committed by GitHub
parent 9fd31aaf6c
commit 2b9e057d9b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -99,7 +99,7 @@ function DrawerTitle({
return (
<DrawerPrimitive.Title
data-slot="drawer-title"
className={cn('text-foreground font-semibold', className)}
className={cn('text-foreground font-semibold line-clamp-2', className)}
{...props}
/>
);