2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-05 23:53:27 +00:00
Files
CyberChef/postcss.config.js
2017-05-18 23:29:04 +01:00

16 lines
338 B
JavaScript

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