Skip to content

Instantly share code, notes, and snippets.

View arnemart's full-sized avatar

Arne Martin Aurlien arnemart

View GitHub Profile
@arnemart
arnemart / important.js
Created February 21, 2017 10:07
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;
});
};
});