fix(UI): add line clamp property to kanban card title
Co-authored-by: Suraj Shetty <surajshetty3416@gmail.com>
This commit is contained in:
parent
dfee4d73c5
commit
a4cf368d2a
1 changed files with 12 additions and 0 deletions
|
|
@ -191,6 +191,18 @@
|
|||
font-size: var(--text-md);
|
||||
font-weight: 500;
|
||||
|
||||
.kanban-card-title,
|
||||
.kanban-card-doc {
|
||||
white-space: normal !important;
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 2;
|
||||
line-clamp: 2;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.kanban-card-doc {
|
||||
.text-muted div {
|
||||
display: inline;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue