No Description

_text-overflow.scss 168B

12345678
  1. // Text overflow
  2. // Requires inline-block or block for proper styling
  3. @mixin text-overflow() {
  4. overflow: hidden;
  5. text-overflow: ellipsis;
  6. white-space: nowrap;
  7. }