Skip to content

Instantly share code, notes, and snippets.

@rschmukler
Created July 18, 2013 21:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rschmukler/6033446 to your computer and use it in GitHub Desktop.
Save rschmukler/6033446 to your computer and use it in GitHub Desktop.
var stylPlugin = module.exports.stylPlugin = require('component-styl-plugin');
var variables = require('rework-variant'),
grid = require('rework-grid'),
shade = require('rework-shade'),
rework = require('rework');
var gridConfig = {
numColumns: 24,
width: 1140,
gutterWidth: 20,
};
stylPlugin.plugins = [rework.mixin(grid(gridConfig)), rework.references(), variables(), shade()];
stylPlugin.includes = [
__dirname + '/../pages/global/stylDefinitions.styl'
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment