Skip to content

Instantly share code, notes, and snippets.

@joews
Created September 16, 2014 09:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joews/23f1c0842c53a254ad4c to your computer and use it in GitHub Desktop.
Save joews/23f1c0842c53a254ad4c to your computer and use it in GitHub Desktop.
Less mixins
/*
* Re-usable Less mixins
*/
.ellipsis(@width: 100%) {
max-width: @width;
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