25 lines
656 B
JavaScript
25 lines
656 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
|
|
theme: {
|
|
extend: {
|
|
keyframes: {
|
|
'pipe-flow': {
|
|
'0%': { width: '5%', opacity: '0.4' },
|
|
'50%': { width: '70%', opacity: '1' },
|
|
'100%': { width: '5%', opacity: '0.4' },
|
|
},
|
|
'pipe-dash': {
|
|
'0%': { transform: 'translateX(-100%)' },
|
|
'100%': { transform: 'translateX(60vw)' },
|
|
},
|
|
},
|
|
animation: {
|
|
'pipe-flow': 'pipe-flow 2s ease-in-out infinite',
|
|
'pipe-dash': 'pipe-dash 1.5s linear infinite',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|