Advertisement
Guest User

Untitled

a guest
Apr 20th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. //allow double box shadows
  2. @mixin box-shadow($shadow1, $shadow2:false) {
  3. $params: $shadow1;
  4. @if $shadow2
  5. { $params: $shadow1, $shadow2; }
  6. -webkit-box-shadow: $params;
  7. -moz-box-shadow: $params;
  8. box-shadow: $params;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement