Higher-order mixins in Sass -


it well-known sass supports higher-order functions, possible have higher-order mixins? this:

@mixin foo($color)     color: $color  @mixin bar($mixin, $background-color)     background-color: $background-color     @include $mixin(complement($background-color))  @include bar(foo, white) 


Comments

Popular posts from this blog

c# - How to get the current UAC mode -

postgresql - Lazarus + Postgres: incomplete startup packet -

javascript - Ajax jqXHR.status==0 fix error -