mojotech / sass2stylus

Kewl
http://sass2stylus.com/
79 stars 18 forks source link

block parameters not translating to mixins #99

Open jhessin opened 6 years ago

jhessin commented 6 years ago

this:

  @include hover-focus {
    text-decoration: none;
  }

should compile to this:

+hover-focus()
  text-decoration: none

but instead just gives this:

hover-focus()

This seems to be the case any time a block is passed to a mixin