Merge changes I68af4999,I2fb38f2a,Ia11ca8d2,I36b83288,I129c127c, ...
[portal.git] / portal-FE-common / src / styles / 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 }