1.4.0 • Published 6 months ago

bemix v1.4.0

Weekly downloads
6
License
GPL-3.0
Repository
github
Last release
6 months ago

Bemix

BEM style mixins for Sass

Installation

via NPM: npm i bemix

In your SCSS:

@import "~bemix";

Usage

@include b('block') {
    ...
    
    @include e('element') {
        ...
    }
    
    @include m('modifier') {
        ...
    }
    
    @include s('active') {
        ...
    }
}

Outputs

.block {
  ...
}
.block .__element {
  ...
}
.block.--modifier {
  ...
}
.block.is-active {
  ...
}
1.4.0

6 months ago

1.3.1

6 years ago

1.3.0

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago

1.0.0-alpha.3

7 years ago