Skip to content

Instantly share code, notes, and snippets.

@czterystaczwarty
Created April 26, 2013 13:33
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 czterystaczwarty/5467405 to your computer and use it in GitHub Desktop.
Save czterystaczwarty/5467405 to your computer and use it in GitHub Desktop.
LESS: mixin with default parameter
// default-color
@emboss-color: #fff;
// mixin with default parameter
.emboss-effect (@color:@emboss-color) {
text-shadow: 0 1px 0 @color;
}
.emboss-effect();
.emboss-effect(#000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment