Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created November 16, 2012 05:01
Show Gist options
  • Save jlittlejohn/4084266 to your computer and use it in GitHub Desktop.
Save jlittlejohn/4084266 to your computer and use it in GitHub Desktop.
SCSS: Box Shadow (Mixin)
@mixin box-shadow($shadow) {
-webkit-box-shadow: $shadow;
-moz-box-shadow: $shadow;
box-shadow: $shadow;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment