Files
PurpleMine2/src/sass/mixins/_text-overflow.scss
mrliptontea abb16c53f3 Change indentation to 2 spaces
To comply with Redmine's coding style.
2016-11-20 21:07:06 +00:00

9 lines
168 B
SCSS

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