This commit is contained in:
2025-07-13 12:31:21 +00:00
parent 6cec86ddbd
commit a8faf0f7e5
2 changed files with 16 additions and 2 deletions
+11 -1
View File
@@ -5,7 +5,17 @@ export default {
content: ['./index.html',
'./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {},
extend: {
keyframes: {
'rainbow-scroll': {
'0%': { backgroundPosition: '0% 50%' },
'100%': { backgroundPosition: '200% 50%' },
},
},
animation: {
'rainbow-scroll': 'rainbow-scroll .25s linear infinite',
},
}
},
plugins: [],
} satisfies Config