hugo-whisper-theme/assets/scss/bootstrap/mixins/_text-truncate.scss
2019-02-17 16:55:16 +10:00

8 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;
}