Files
CHIEFSOFT\ameye 979ea25b10 added bootstrap
2025-09-22 15:33:20 -04: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;
}