Files
EUromat-wahlprogramme/css/bootstrap/mixins/_text-overflow.scss
T
Felix Förtsch f1fda01b51 init commit
2017-08-22 14:17:48 +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;
}