Files
ihrm/node_modules/js-datepicker/postcss.config.js
Nikhil Ravi Cybrosys e1794e7422 [UPDT]translations in the views (#4)
[UPDT]Translations in the views
[FIX]major bug fixes
2023-05-18 15:05:28 +05:30

24 lines
655 B
JavaScript
Executable File

module.exports = {
plugins: {
autoprefixer: {},
cssnano: {
preset: [
'default',
{
/*
Why do we need to exclude any calc transformations?
Because we want to preserve any calc declarations as they are
so that the browser is left to implement how to render any
sub-pixel situations. Otherwise, cssnano will transform calc's
into literal percent values and potentially break things for
some users (https://bit.ly/2vVzZvL).
*/
calc: {
exclude: true
}
}
]
}
}
}