Skip to content

Commit

Permalink
Added custum animation
Browse files Browse the repository at this point in the history
  • Loading branch information
Rucha-Ambaliya committed Jan 9, 2025
1 parent c18cc1b commit 2d51c54
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions frontend/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,29 @@ module.exports = {
xs: "480px",
xxs: "400px",
},
animation: {
spark: "spark 1.5s linear infinite",
"pulse-custom": "pulse 2s infinite",
},
keyframes: {
spark: {
"0%": {
maxWidth: "0%",
},
"100%": {
maxWidth: "100%",
},
},
pulse: {
"0%, 100%": {
transform: "scale(1)",
},
"50%": {
transform: "scale(1.1)",
opacity: "1",
},
},
},
},
},
plugins: [],
Expand Down

0 comments on commit 2d51c54

Please sign in to comment.