mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 18:25:49 +03:00
f09a123a87
So we can use names like easeInSine in CSS transitions rather than cubic-bezier(0.47, 0, 0.745, 0.715) Required for https://github.com/matrix-org/matrix-react-sdk/pull/3674
14 lines
416 B
JavaScript
14 lines
416 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
require("postcss-import")(),
|
|
require("autoprefixer")(),
|
|
require("postcss-simple-vars")(),
|
|
require("postcss-extend")(),
|
|
require("postcss-nested")(),
|
|
require("postcss-mixins")(),
|
|
require("postcss-easings")(),
|
|
require("postcss-strip-inline-comments")(),
|
|
],
|
|
"parser": "postcss-scss",
|
|
"local-plugins": true,
|
|
};
|