Added modern browser warning for theme support

This commit is contained in:
n1474335 2017-05-18 23:29:04 +01:00
parent a418f63a44
commit 488d54493a
3 changed files with 50 additions and 1 deletions

15
postcss.config.js Normal file
View file

@ -0,0 +1,15 @@
module.exports = {
plugins: [
require("postcss-import"),
require("autoprefixer")({
browsers: [
"Chrome >= 40",
"Firefox >= 35",
"Edge >= 14"
]
}),
require("postcss-css-variables")({
preserve: true
}),
]
};