doc/themes/learn4/scss/spectre/mixins/_text.scss
2020-11-14 16:37:58 +01:00

6 lines
114 B
SCSS

// Text Ellipsis
@mixin text-ellipsis() {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}