chore: translate comments in css files

This commit is contained in:
tzhangchi
2023-01-14 10:00:18 +08:00
parent 49a8be3ce6
commit 7de8ac53d1
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -106,7 +106,7 @@ export const textEllipsis = (lineNum = 1): CSSProperties => {
display: '-webkit-box',
wordBreak: 'break-all',
WebkitBoxOrient: 'vertical',
WebkitLineClamp: `${lineNum}`, //需要显示的行数
WebkitLineClamp: `${lineNum}`, //the number of rows to display
overflow: 'hidden',
textOverflow: 'ellipsis',
};