bootstrap5/scss/mixins/_text-truncate.scss
ThePetrovich eec942e2b4 customize
2026-06-16 22:46:11 +09: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;
}