6 lines
110 B
SCSS
6 lines
110 B
SCSS
@mixin truncate($width) {
|
|
width: $width;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
} |