UNPKG

@eightshift/frontend-libs

Version:

A collection of useful frontend utility modules. powered by Eightshift

10 lines (8 loc) 252 B
const postcss = require('postcss'); module.exports = postcss.plugin('es-transform-rems', () => { return (css) => { css.walkDecls((decl) => { decl.value = decl.value.replace(/([0-9.-]+rem)/g, 'calc($1 * var(--base-font-size, 1))'); }); }; });