Skip to content

Commit

Permalink
Merge branch 'feature/admin' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
ad956 committed Jul 27, 2024
1 parent b7fc872 commit 92f2ebb
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,23 @@ const config: Config = {
extend: {
animation: {
"infinite-scroll": "infinite-scroll 25s linear infinite",
wave: "wave 2.5s infinite",
},
keyframes: {
"infinite-scroll": {
from: { transform: "translateX(0)" },
to: { transform: "translateX(-100%)" },
},
wave: {
"0%": { transform: "rotate(0deg)" },
"10%": { transform: "rotate(14deg)" },
"20%": { transform: "rotate(-8deg)" },
"30%": { transform: "rotate(14deg)" },
"40%": { transform: "rotate(-4deg)" },
"50%": { transform: "rotate(10deg)" },
"60%": { transform: "rotate(0deg)" },
"100%": { transform: "rotate(0deg)" },
},
},
},
},
Expand Down

0 comments on commit 92f2ebb

Please sign in to comment.