]> git.ipfire.org Git - ipfire.org.git/blame - src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_text-truncate.scss
Introduce autotools
[ipfire.org.git] / src / scss / bootstrap-4.0.0-alpha.6 / scss / mixins / _text-truncate.scss
CommitLineData
91e44d91
S
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}