// The `set-vars()` mixin set the CSS variables from the given `$values`. @mixin set-vars($name, $values, $prefix: $var-prefix) { @each $suffix, $value in $values { @include set-var($name, $value, $prefix, $suffix); } }
Last updated 2 years ago