feat: Add shine-pulse keyframe animation to tailwind.config.ts

This commit is contained in:
Mauro Balades
2024-08-11 20:48:27 +02:00
parent c6424e3bff
commit c0f2423dfa
8 changed files with 73 additions and 58 deletions

View File

@@ -63,6 +63,17 @@ const config = {
sm: 'calc(var(--radius) - 4px)',
},
keyframes: {
"shine-pulse": {
"0%": {
"background-position": "0% 0%",
},
"50%": {
"background-position": "100% 100%",
},
to: {
"background-position": "0% 0%",
},
},
'accordion-down': {
from: { height: '0' },
to: { height: 'var(--radix-accordion-content-height)' },