Skip to content

Instantly share code, notes, and snippets.

@ozgurg
Created April 14, 2022 21:52
Show Gist options
  • Save ozgurg/289a27125c8df4cd93029cce00fc34b2 to your computer and use it in GitHub Desktop.
Save ozgurg/289a27125c8df4cd93029cce00fc34b2 to your computer and use it in GitHub Desktop.
SASS make-linear-gradient function
@function make-linear-gradient($degree, $stops) {
$gradient: ();
@each $percentage, $color in $stops {
$gradient: append($gradient, $color $percentage, comma)
}
@return linear-gradient($degree, $gradient)
}
.sass {
linear-gradient: make-linear-gradient(45deg, (
0%: red,
50%: green,
100%: blue
))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment