Files
Ogestan_Drossagyn_Papilocare/OgestanPlus/bootstrap-5.3.8/scss/mixins/_text-truncate.scss
T
2025-12-08 15:37:24 -06: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;
}