We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 285b0fe commit a0ecdf6Copy full SHA for a0ecdf6
1 file changed
animate/animate.js
@@ -13,8 +13,8 @@ const keyframesSlideOut = require('./keyframes/slideOut');
13
const keyframesFadeIn = require('./keyframes/fadeIn');
14
const keyframesFadeOut = require('./keyframes/fadeOut');
15
16
-module.exports = function (variants) {
17
- return function ({ addUtilities }) {
+module.exports = function () {
+ return function ({ addUtilities, variants }) {
18
19
addUtilities({
20
'.animated': {
@@ -345,6 +345,6 @@ module.exports = function (variants) {
345
'@keyframes fadeOutRightBig': keyframesFadeOut.keyframeFadeOutRightBig,
346
'@keyframes fadeOutUp': keyframesFadeOut.keyframeFadeOutUp,
347
'@keyframes fadeOutUpBig': keyframesFadeOut.keyframeFadeOutUpBig
348
- }, variants)
+ }, variants(variants))
349
};
350
0 commit comments