Files
django-mfa2/example/static/vendor/bootstrap/scss/mixins/_text-truncate.scss
Mohamed El-Kalioby 215262a2c7 Adding Example App
2019-06-20 19:15:55 +03: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;
}