Remove Line Clamping

I want to see the whole descriptions
This commit is contained in:
Cronocide 2024-05-14 22:35:48 +00:00
parent f64915285f
commit 0d05020ac1

View File

@ -40,13 +40,13 @@ function Service(props: IServiceProps) {
: ``
}
<div>
<h3 class="text-lg mt-1 font-semibold line-clamp-1">
<h3 class="text-lg mt-1 font-semibold">
${Anchor({ uri, newWindow, children: name })}
</h3>
${
!is.null(description)
? `
<p class="text-sm text-black/50 dark:text-white/50 line-clamp-1">
<p class="text-sm text-black/50 dark:text-white/50">
${Anchor({ uri, newWindow, children: description })}
</p>
`