Skip to content

Commit 4184c4a

Browse files
authored
Merge pull request #4 from codyfyi/patch-2
fix for tailwindcss just-in-time mode
2 parents b1d1db3 + a477c25 commit 4184c4a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ const plugin = require('tailwindcss/plugin')
22

33
module.exports = plugin(function({ addUtilities, e }) {
44
addUtilities({
5-
'.\?': {
5+
[`.${e('?')}`]: {
66
'animation': `${e('?')}wobble 0.5s ease-in-out alternate infinite`
77
},
8-
'@keyframes \\?wobble': {
8+
[`@keyframes ${e('?')}wobble`]: {
99
'0%': {
1010
'box-shadow': 'inset 4px 4px rgb(236, 15, 170), inset -4px -4px rgb(236, 15, 170)'
1111
},
@@ -14,4 +14,4 @@ module.exports = plugin(function({ addUtilities, e }) {
1414
},
1515
}
1616
});
17-
});
17+
});

0 commit comments

Comments
 (0)