larsenwork / postcss-easing-gradients

PostCSS plugin to create smooth linear-gradients that approximate easing functions.
https://www.npmjs.com/package/postcss-easing-gradients
MIT License
923 stars 22 forks source link

Work with postcss-easings #19

Open prn-feip opened 1 year ago

prn-feip commented 1 year ago

Just tried to install both these packages:

Added both to .postcssrc.js:

module.exports = {
    plugins: ['postcss-easing-gradients', 'postcss-easings']
};

But this code is not processed:

background-image: linear-gradient(to right, black, ease-in-sine, transparent);

I tried to change order of plugins but it's not working too.