website/_sass/bootstrap/scss/mixins/_text-truncate.scss
2024-01-20 16:06:39 +01: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;
}