Files
ppeasy-cimac/plugins/bootstrap/mixins/_text-truncate.scss
T
2026-05-14 08:47:13 +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;
}