🐛 (#250) Fix adds an ellipse when text is overflowing

This commit is contained in:
Alicia Sykes 2021-10-03 21:42:03 +01:00
parent 3c49fb0902
commit 7ede2c4a4d

View File

@ -289,6 +289,10 @@ export default {
position: relative; position: relative;
padding: 0; padding: 0;
z-index: 2; z-index: 2;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
word-break: keep-all;
span.text { span.text {
white-space: nowrap; white-space: nowrap;
} }