Skip to content

Commit e4517f1

Browse files
committed
Add shimmer animation to Tailwind config
1 parent 9ecd43e commit e4517f1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

apps/desktop/tailwind.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,15 @@ module.exports = {
1313
"0%, 100%": { transform: "translateY(0)" },
1414
"50%": { transform: "translateY(-4px)" },
1515
},
16+
shimmer: {
17+
"0%": { transform: "translateX(-100%)" },
18+
"100%": { transform: "translateX(100%)" },
19+
},
1620
},
1721
animation: {
1822
...baseConfig.theme?.extend?.animation,
1923
"gentle-bounce": "gentleBounce 1.5s ease-in-out infinite",
24+
shimmer: "shimmer 2s ease-in-out infinite",
2025
},
2126
},
2227
},

0 commit comments

Comments
 (0)