Files
BoostrapPageGenerator4/4/scss/mixins/_text-truncate.scss
Francesco Malagrino f1fdc89d7d Bootstrap version 4
Bootstrap Version 4
2018-02-06 19:17:39 +00:00

8 lines
167 B
SCSS
Executable File

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