mainpage_v2_theme/assets/bootstrap/scss/mixins/_text-truncate.scss
2024-03-24 22:16:02 +01:00

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