File size: 611 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
@mixin sm {
@media only screen and (min-width: 640px) {
@content;
}
}
@mixin md {
@media only screen and (min-width: 768px) {
@content;
}
}
@mixin lg {
@media only screen and (min-width: 1024px) {
@content;
}
}
@mixin xl {
@media only screen and (min-width: 1280px) {
@content;
}
}
@mixin xxl {
@media only screen and (min-width: 1536px) {
@content;
}
}
@mixin ellipsis($line: 2) {
display: -webkit-box;
-webkit-line-clamp: $line;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
|