Newer
Older
Old_Homepage / energy / sass / bootstrap / mixins / _text-overflow.scss
@zion zion on 12 Sep 2016 168 bytes template selection complete
// Text overflow
// Requires inline-block or block for proper styling

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