Limit label text to two lines with ellipsis

This commit is contained in:
Christopher Drosos 2026-05-03 13:42:46 +03:00 committed by GitHub
parent e6f5d71f46
commit 6b74d5941e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -29,8 +29,10 @@
.label {
line-height: 1.5rem;
white-space: normal;
word-break: break-word;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
color: var(--primary-foreground-color);
}
}