UNPKG

351 BJavaScriptView Raw
1var postcss = require('postcss');
2var bug4 = require('./bugs/bug4');
3var bug81a = require('./bugs/bug81a');
4
5module.exports = postcss.plugin('postcss-flexbugs-fixes', function(opts) {
6 opts = opts || {};
7
8 return function(css) {
9 css.eachDecl(function(d) {
10 bug4(d);
11 bug81a(d);
12 });
13 };
14});