Luke Tainton 906e557d65
🚀 RELEASE: 2020 Revamp
Signed-off-by: Luke Tainton <luke@tainton.uk>
2020-05-09 22:15:53 +01:00

9 lines
168 B
SCSS
Executable File

// Text truncate
// Requires inline-block or block for proper styling
@mixin text-truncate() {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}