You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
448 B

8 months ago
$main-color: #9278ff;
3 years ago
$max-width: 1440px;
$min-width: 1280px;
4 years ago
@mixin ellipsis {
4 years ago
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
4 years ago
}
4 years ago
4 years ago
@mixin mul-ellipsis($num) {
4 years ago
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: $num;
text-overflow: ellipsis;
overflow: hidden;
4 years ago
}
4 years ago
.ellipsis {
@include ellipsis();
4 years ago
}
4 years ago
.mul-ellipsis2 {
@include mul-ellipsis(2);
4 years ago
}
4 years ago
.mul-ellipsis3 {
@include mul-ellipsis(3);
4 years ago
}