_text.scss 114 B

123456
  1. // Text Ellipsis
  2. @mixin text-ellipsis() {
  3. overflow: hidden;
  4. text-overflow: ellipsis;
  5. white-space: nowrap;
  6. }