优化组件/更新

This commit is contained in:
gyq
2025-12-03 10:13:55 +08:00
parent 92f9776a35
commit 09b6e36a52
261 changed files with 22080 additions and 7238 deletions

View File

@@ -0,0 +1,22 @@
@mixin ellipsis {
// overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
/* #ifndef UNI-APP-X && APP || APP-NVUE */
word-wrap: normal;
/* #endif */
}
@mixin ellipsisLn($line) {
// overflow: hidden;
text-overflow: ellipsis;
/* #ifdef UNI-APP-X && APP || APP-NVUE */
lines: $line;
/* #endif */
/* #ifndef UNI-APP-X && APP || APP-NVUE */
-webkit-line-clamp: $line;
display: -webkit-box;
-webkit-box-orient: vertical;
/* #endif */
}