Skip to content

Instantly share code, notes, and snippets.

@sebald
Created September 11, 2012 20:52
Show Gist options
  • Save sebald/3701967 to your computer and use it in GitHub Desktop.
Save sebald/3701967 to your computer and use it in GitHub Desktop.
SASS Mixin box-shadow
@mixin box-shadow($shadow) {
-webkit-box-shadow: #{$shadow};
-moz-box-shadow: #{$shadow};
box-shadow: #{$shadow};
}
@include box-shadow(0 3px 3px -2px rgba(0,0,0,0.6));
@include box-shadow("inset 0 2px 4px rgba(0,0,0,.4), 0 1px 2px rgba(0,0,0,.20)");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment