mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04: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
15 lines
416 B
JavaScript
15 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,
|
|
};
|