@mixin ellipsis { // overflow: hidden; text-overflow: ellipsis; white-space: nowrap; /* #ifndef APP-ANDROID || APP-IOS || APP-NVUE */ word-wrap: normal; /* #endif */ } @mixin ellipsisLn($line) { // overflow: hidden; text-overflow: ellipsis; /* #ifdef APP-ANDROID || APP-IOS || APP-NVUE */ lines: $line; /* #endif */ /* #ifndef APP-ANDROID || APP-IOS || APP-NVUE */ -webkit-line-clamp: $line; display: -webkit-box; -webkit-box-orient: vertical; /* #endif */ }