Skip to content

Instantly share code, notes, and snippets.

@dmjcomdem
Created July 25, 2016 02:37
Show Gist options
  • Save dmjcomdem/15e0b1cbcda1a4310637200dcec15a02 to your computer and use it in GitHub Desktop.
Save dmjcomdem/15e0b1cbcda1a4310637200dcec15a02 to your computer and use it in GitHub Desktop.
@function long-shadow($point, $color) {
$box-shadow: 1px 1px $color;
@for $i from 2 through $point {
$box-shadow: '#{$box-shadow}, #{$i}px #{$i}px #{$color}';
}
@return unquote($box-shadow);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment