Skip to content

Instantly share code, notes, and snippets.

@arnemart
Created February 21, 2017 10:07
Show Gist options
  • Save arnemart/edc24aa95985555cf7b45bf65a76417b to your computer and use it in GitHub Desktop.
Save arnemart/edc24aa95985555cf7b45bf65a76417b to your computer and use it in GitHub Desktop.
PostCSS plugin to make every declaration !important
var postcss = require('postcss');
module.exports = postcss.plugin('postcss-everything-is-important', function () {
return function (css) {
css.walkDecls(function (decl) {
decl.important = true;
});
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment