Files
spectre.console/docs/input/assets/bootstrap/mixins/_text-truncate.scss
Patrik Svensson f1912b1d44 Add initial docs
2020-08-27 15:12:03 +02: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;
}