File "_text-truncate.scss"

Full Path: /home/asmplong/www/scss/mixins/_text-truncate.scss
File size: 168 bytes
MIME-type: text/plain
Charset: utf-8

// Text truncate
// Requires inline-block or block for proper styling

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