Created
June 23, 2011 10:07
-
-
Save xulapp/1042294 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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