Files
bozoclicker/tailwind.config.js
2025-08-04 00:15:22 +05:30

19 lines
454 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
keyframes: {
marquee: {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(-100%)' },
},
},
animation: {
marquee: 'marquee 240s linear infinite', // Adjusted duration for slower scroll
},
},
},
plugins: [],
};