Skip to content

Instantly share code, notes, and snippets.

@felix-d
Created March 2, 2015 20:24
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 felix-d/62b50855efe4948cc581 to your computer and use it in GitHub Desktop.
Save felix-d/62b50855efe4948cc581 to your computer and use it in GitHub Desktop.
_mixins.scss
//allow double box shadows
@mixin box-shadow($shadow1, $shadow2:false) {
$params: $shadow1;
@if $shadow2
{ $params: $shadow1, $shadow2; }
-webkit-box-shadow: $params;
-moz-box-shadow: $params;
box-shadow: $params;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment