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