blob: 3504bb1aa5d7aa2c3d75aedd4a03916afaa7e4d9 [file] [log] [blame] [edit]
// Text truncate
// Requires inline-block or block for proper styling
@mixin text-truncate() {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}