1.1.1 • Published 7 years ago

@dudadev/postcss-flexibility v1.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

PostCSS Flexibility

NPM version Build Status Dependency Status devDependency Status Code coverage status XO code style

PostCSS plugin for Flexibility.

.foo {
	display: flex;
}

will be processed to:

.foo {
	-js-display: flex;
	display: flex;
}

Installation

$ npm install --save-dev postcss-flexibility

Usage

postcss([ require('postcss-flexibility') ])

See PostCSS docs for examples for your environment.

Excluding rules

You can exclude rule from transformation by adding /* flexibility-disable */ comment.

.foo {
	/* flexibility-disable */
	display: flex;
}

will be processed to:

.foo {
	/* flexibility-disable */
	display: flex;
}

--

License

MIT © Valentin Semirulnik