shelldandy / manila-mixins

A bunch of really cool Sass Mixins
https://shelldandy.github.io/manila-mixins/
MIT License
15 stars 0 forks source link

BEM Mixins #3

Closed shelldandy closed 6 years ago

shelldandy commented 6 years ago
@mixin e($element) {
    &__#{$element} {
        @content;
    }
}

@mixin m($modifier) {
    &--#{$modifier} {
        @content;
    }
}

@mixin is($state) {
  &.is-#{$state} {
    @content;
  }
}