Files
manja_ui_dev/Vue_Starter/scss/bootstrap/mixins/_text-truncate.scss
T
Łukasz Holeczek 15df4b91de Hello World!
2017-08-16 12:12:02 +02:00

9 lines
168 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;
}