website/_sass/bootstrap/scss/mixins/_text-truncate.scss
Rolf Amfelt f06abe5ab5
Some checks failed
continuous-integration/drone/push Build is failing
jekyll update
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;
}