Css variable working fine with chrome but not in IE, I'm trying to do this:
:root {
--primary-color: #015a82;
--background-color: #015a82;
--text-color: #fff;
--secondary-color: #6d6d6d;
}
body {
color: var(--primary-color);
}
But it is not supported in Internet Explorer, I tried to implement postcss-loader
but it seems like not compatible with Angular 7, any ideas?