UNPKG

fixins

Version:

A collection of functions and mixins for use with precss and postcss-functions

16 lines (13 loc) 186 B
'use strict'; module.exports = center; /** * ### `fx-center` * * #### Return * `margin: 0 auto;` */ function center(mixin) { return { margin: '0 auto' }; }