mirror of
https://github.com/jaypyles/Scraperr.git
synced 2025-10-30 05:57:12 +00:00
24 lines
496 B
JavaScript
24 lines
496 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{js,jsx,ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
animation: {
|
|
fadeIn: "fadeIn 0.5s ease-in-out",
|
|
fadeOut: "fadeOut 0.5s ease-in-out",
|
|
},
|
|
keyframes: {
|
|
fadeIn: {
|
|
"0%": { opacity: 0 },
|
|
"100%": { opacity: 1 },
|
|
},
|
|
fadeOut: {
|
|
"0%": { opacity: 1 },
|
|
"100%": { opacity: 0 },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|