1.0.2 • Published 7 years ago

flexibility-stylus v1.0.2

Weekly downloads
2
License
ISC
Repository
github
Last release
7 years ago

flexibility-stylus

This is a stylus plugin based on postcss-flexibility. It might help when you use the flexbox polyfill Flexibility and Stylus preprocessor.

And it simply does this:

add a -js-display: flex declaration before any display: flex declarations in your CSS

Installation

npm install --save-dev flexibility-stylus

Usage

You can use it like any other stylus plugins. For example, using the cli:

stylus src -o dist -w -u flexibility-stylus 

or using it in Node.js

var stylus = require('stylus');
var flex = require('flexibility-stylus');

stylus(css)
  .use(flex())
  .render(function(err, output){
    console.log(output);
  });