workshop.codes icon indicating copy to clipboard operation
workshop.codes copied to clipboard

[Editor] Blockless mixins eat into blockful mixins

Open netux opened this issue 2 years ago • 0 comments

I'm bad with descriptions so here is an example:

Steps to reproduce

@mixin myMixin(myVar) {
Mixin.myVar;
@contents;
}

@include myMixin(blockless);

@include myMixin(blockful) {blockful mixin content;}

renders

blockless;
blockful mixin content;

Expected behaviour

blockless;

blockful;
blockful mixin content;

netux avatar Oct 26 '23 01:10 netux