Skip to content
Snippets Groups Projects
Select Git revision
  • 45b4f4b3b2f01e76adbf03e6db772c51094154a9
  • main default protected
2 results

_text-truncate.scss

Blame
  • _text-truncate.scss 168 B
    // Text truncate
    // Requires inline-block or block for proper styling
    
    @mixin text-truncate() {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }