--space-unit: 1em;
--space-xl: calc(3.25 * var(--space-unit));
Это calc(-1 * var(--space-xl));
должно быть отрицательным значением .... но -1 игнорируется!
Выход 3,25em.
Вот моя настройка gulp postcss:
.pipe($.postcss([
$.stylelint(),
$.autoprefixer(),
$.cssnano({
discardComments: {
removeAll: true
},
discardDuplicates: true,
discardEmpty: true,
minifyFontValues: true,
minifySelectors: true
}),
$.postcssCustomProperties(), // IE 11
$.postcssCalc(), // IE 11
$.postcssReporter({
clearReportedMessages: true
})
]))
Есть идеи?