0.0.2 • Published 9 years ago

component-css-stylus v0.0.2

Weekly downloads
12
License
-
Repository
github
Last release
9 years ago

Component CSS for Stylus


A component-css plugin for stylus.

Installation

You can install through npm as such: npm install component-css-stylus

Usage

You can include component-css-stylus as a normal stylus plugin. Basic example below:

var stylus = require('stylus');
var ccss = require('component-css-stylus');

stylus(css)
  .use(ccss()({prefix: 'app-'}))
  .render(function(err, output){
    console.log(output);
  });