Newer
Older
Old_Homepage / homepage / sass / bootstrap / mixins / _text-overflow.scss
@zion zion on 30 Sep 2016 168 bytes change file name
// Text overflow
// Requires inline-block or block for proper styling

@mixin text-overflow() {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}