Files
BoostrapPageGenerator4/scss/mixins/_text-truncate.scss
Francesco Malagrino 3c9cb0fe3c Release
Release
2017-03-26 20:32:45 +02:00

8 lines
167 B
SCSS

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