Files
mvl-flask/static/css/bootstrap/mixins/_text-truncate.scss
Marijn Jansen 19f6a530da Cleanup
2019-03-21 20:10:09 +01: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;
}