shop.balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

_text-overflow.scss (176B)


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