Upgrade bootstrap sources from v3.3.7 (modified) to v4.6.1 (pristine)
[ndcode_site.git] / css / bootstrap / mixins / _text-truncate.scss
1 // Text truncate
2 // Requires inline-block or block for proper styling
3
4 @mixin text-truncate() {
5   overflow: hidden;
6   text-overflow: ellipsis;
7   white-space: nowrap;
8 }