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

9 lines
168 B
SCSS
Raw Normal View History

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