Skip to content

Commit

Permalink
refac: increase tooltip description lines (#5911)
Browse files Browse the repository at this point in the history
  • Loading branch information
djbarnwal authored Oct 15, 2024
1 parent b4da6fd commit 8c69d03
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions web-common/src/components/tooltip/TooltipDescription.svelte
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<p class="text-gray-300 my-1 w-full line-clamp-3">
<p class="text-gray-300 my-1 w-full line-clamp-15">
<slot />
</p>

<style>
.line-clamp-3 {
.line-clamp-15 {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 3;
line-clamp: 3;
-webkit-line-clamp: 15;
line-clamp: 15;
-webkit-box-orient: vertical;
}
</style>

1 comment on commit 8c69d03

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.