11 lines
128 B
SCSS
11 lines
128 B
SCSS
|
@mixin hide-text {
|
||
|
overflow: hidden;
|
||
|
|
||
|
&:before {
|
||
|
content: "";
|
||
|
display: block;
|
||
|
width: 0;
|
||
|
height: 100%;
|
||
|
}
|
||
|
}
|