@mixin ellipsis($line: 1) { text-overflow: ellipsis; overflow: hidden; @if $line == 1 { width: 100%; white-space: nowrap; } @else { display: -webkit-box; word-break: break-all; -webkit-box-orient: vertical; -webkit-line-clamp: $line; } } @mixin clearfix { $selector: &; @at-root { #{$selector}::before, #{$selector}::after { display: table; content: ""; } #{$selector}::after { clear: both; } } }