An open API service indexing awesome lists of open source software.

https://github.com/mrsunshyne/bem-scss-mixin

A very good mixin originally authored by Mark Mintel.
https://github.com/mrsunshyne/bem-scss-mixin

Last synced: 3 months ago
JSON representation

A very good mixin originally authored by Mark Mintel.

Awesome Lists containing this project

README

        

BEM-SCSS-Mixin
==============

A very good mixin originally authored by Mark Mintel.

## Usage

```SCSS

@include b(test) {
background: red;
@include m(modifier) {
color: blue;
@include e(subelement) {
background: gray;
}
}
}
```