Closed danielguillan closed 9 years ago
The hack namespace should be applied to the current constructed selector.
@include block('burger') { @include modifier('veggie') { @include element('extra-topping') { @include hack() { ingredient: bacon; } } } }
Current output:
._o-burger--veggie .o-burger__extra-topping { ingredient: bacon; }
Expected output:
.o-burger--veggie ._o-burger__extra-topping { ingredient: bacon; }
Fixed in f9336df
The hack namespace should be applied to the current constructed selector.
Current output:
Expected output: