Files
hugo_bootstrap_theme/assets/scss/bootstrap/mixins/_text-truncate.scss
T
2026-06-16 16:45:32 +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;
}