19 lines
454 B
JavaScript
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 120s linear infinite', // Adjusted duration for slower scroll
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|