fmt/doc/bootstrap/scss/mixins/_text-truncate.scss

9 lines
168 B
SCSS
Raw Normal View History

2024-05-27 02:59:42 +00:00
// Text truncate
2015-05-19 15:13:13 +00:00
// Requires inline-block or block for proper styling
2024-05-27 02:59:42 +00:00
@mixin text-truncate() {
2015-05-19 15:13:13 +00:00
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}