26 lines
469 B
JavaScript
26 lines
469 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
export default {
|
||
|
|
content: [
|
||
|
|
"./index.html",
|
||
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
||
|
|
],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
fadeIn: {
|
||
|
|
from: { opacity: 0 },
|
||
|
|
to: { opacity: 1 },
|
||
|
|
},
|
||
|
|
fadeOut: {
|
||
|
|
from: { opacity: 1 },
|
||
|
|
to: { opacity: 0 },
|
||
|
|
},
|
||
|
|
},
|
||
|
|
animation: {
|
||
|
|
'fade-in': 'fadeIn 0.3s ease-in-out',
|
||
|
|
'fade-out': 'fadeOut 0.3s ease-in-out',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
}
|
||
|
|
|