kril-theme/src/sass/bootstrap4/mixins/_text-truncate.scss
Holger Könemann 57efa40ba7 recompile
2018-07-26 17:43:20 +02:00

9 lines
168 B
SCSS

// Text truncate
// Requires inline-block or block for proper styling
@mixin text-truncate() {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}