Files
kimai2/app/Resources/assets/scss/bootstrap/mixins/_text-overflow.scss
Kevin Papst 579b962c85 first draft
2016-10-20 22:10:41 +02: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;
}