13 lines
182 B
SCSS
13 lines
182 B
SCSS
|
@mixin hide-text($height: 1em) {
|
||
|
height: $height;
|
||
|
line-height: 1.5;
|
||
|
overflow: hidden;
|
||
|
|
||
|
&::before {
|
||
|
content: "";
|
||
|
display: block;
|
||
|
width: 0;
|
||
|
height: 100%;
|
||
|
}
|
||
|
}
|