Skip to content

Commit 85dc972

Browse files
authored
fix: move TailwindCss animate config inside extend
1 parent cde045c commit 85dc972

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tailwind.config.cjs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ module.exports = {
88
},
99
content: ['./js/src/**/*.{js,ts,jsx,tsx}', './inc/**/*.php'],
1010
theme: {
11-
animation: {
12-
// why need this? because elementor plugin might conflict with same animate keyframe name
13-
// we override the animation name with this
14-
pulse: 'tw-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
15-
},
1611
extend: {
12+
animation: {
13+
// why need this? because elementor plugin might conflict with same animate keyframe name
14+
// we override the animation name with this
15+
pulse: 'tw-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
16+
},
1717
colors: {
1818
primary: '#1677ff',
1919
},

0 commit comments

Comments
 (0)