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.
- Host: GitHub
- URL: https://github.com/mrsunshyne/bem-scss-mixin
- Owner: MrSunshyne
- Created: 2014-09-16T06:34:10.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-09-16T06:39:23.000Z (almost 11 years ago)
- Last Synced: 2025-01-26T02:52:09.494Z (5 months ago)
- Language: CSS
- Size: 117 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
}
}
}
```