Files
JS/webseite-sass-js/MATERIAL/bootstrap-5.3.8/scss/mixins/_text-truncate.scss
Philippe Torrel 1b7f884cc6
2026-07-03 15:30:26 +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;
}