mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-03-05 12:20:16 +01:00
8 lines
200 B
SCSS
8 lines
200 B
SCSS
@mixin text-clamp($line: 2) {
|
|
word-break: break-all;
|
|
-webkit-line-clamp: $line;
|
|
overflow: hidden !important;
|
|
text-overflow: ellipsis;
|
|
-webkit-box-orient: vertical;
|
|
display: -webkit-box;
|
|
}
|