1593b25ea5c7b570188f99bbeda5f36b0d57e5eb
[aai/sparky-fe.git] / resources / scss / bootstrap / mixins / _text-overflow.scss
1 // Text overflow
2 // Requires inline-block or block for proper styling
3
4 @mixin text-overflow() {
5   overflow: hidden;
6   text-overflow: ellipsis;
7   white-space: nowrap;
8 }