IO-2143 Add truncation for long vehicle notes.

This commit is contained in:
Patrick Fic
2023-01-20 09:20:07 -08:00
parent c78b13baa3
commit 1583ed2d61
3 changed files with 18 additions and 2 deletions

View File

@@ -6,3 +6,12 @@
display: flex;
flex-wrap: wrap;
}
.clamp {
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
overflow-wrap: break-word;
}