Could not resolve the variable ... within ...
Anyone know why I get this error?
mixin im trying to setup:
@define-mixin font-size $val {
font-size: calc($val * (100vw / var(--base-grid)));
}
postcss.config.js
module.exports = {
plugins: {
'precss': {},
'postcss-for': {},
'cssnano': {}
}
}
Could not resolve the variable ... within ...Anyone know why I get this error?
mixin im trying to setup:
postcss.config.js