UNPKG

postcss-utilities

Version:

PostCSS plugin to add a collection of mixins, shortcuts, helpers and tools for your CSS

19 lines (18 loc) 349 B
/** * Center Block */ module.exports = function (decl) { decl.replaceWith({ prop: 'display', value: 'block', source: decl.source }, { prop: 'margin-left', value: 'auto', source: decl.source }, { prop: 'margin-right', value: 'auto', source: decl.source }); };