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.
22 lines
427 B
22 lines
427 B
// 边框
|
|
@mixin harirline-common {
|
|
position: absolute;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
content: ' ';
|
|
pointer-events: none;
|
|
border-radius: inherit;
|
|
top: -50%;
|
|
right: -50%;
|
|
bottom: -50%;
|
|
left: -50%;
|
|
transform: scale(0.5);
|
|
}
|
|
|
|
// 溢出省略
|
|
@mixin eps($num:1) {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: $num;
|
|
overflow: hidden;
|
|
}
|
|
|