UNPKG

postcss-utilities

Version:

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

17 lines (15 loc) 332 B
/** * Border Top Radius */ module.exports = function (decl, args) { var radius = args[1] || '3px'; decl.replaceWith({ prop: 'border-top-left-radius', value: radius, source: decl.source }, { prop: 'border-top-right-radius', value: radius, source: decl.source }); };