Files
c-cms-legacy/public/assets/scss/bootstrap/mixins/_text-truncate.scss
Mathieu Lagace 771ed55f53 Initial commit
2018-06-27 19:54:27 -04:00

9 lines
168 B
SCSS
Vendored

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