Skip to content

Instantly share code, notes, and snippets.

@ralexandr
Created October 19, 2016 09:09
Show Gist options
  • Save ralexandr/5ecf2744cd25d125b913cac3ac8084d6 to your computer and use it in GitHub Desktop.
Save ralexandr/5ecf2744cd25d125b913cac3ac8084d6 to your computer and use it in GitHub Desktop.
SASS: Truncate mixin
@mixin truncate($truncation-boundary) {
max-width: $truncation-boundary;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment