Skip to content

Instantly share code, notes, and snippets.

@xulapp
Created June 23, 2011 10:07
Show Gist options
  • Save xulapp/1042294 to your computer and use it in GitHub Desktop.
Save xulapp/1042294 to your computer and use it in GitHub Desktop.
@mixin box-shadow($arg) {
-moz-box-shadow: $arg;
-ms-box-shadow: $arg;
-o-box-shadow: $arg;
-webkit-box-shadow: $arg;
box-shadow: $arg;
}
div {
// Mixin box-shadow takes 1 argument but 2 were passed. (Sass::SyntaxError)
// @include box-shadow(0 0 5px red, 0 0 5px blue inset);
@include box-shadow((0 0 5px red, 0 0 5px blue inset));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment