| Sean McCullough | bf66a2f | 2025-06-23 21:53:55 -0700 | [diff] [blame] | 1 | /** @type {import('tailwindcss').Config} */ |
| 2 | export default { |
| 3 | content: ["./src/**/*.{js,ts,jsx,tsx,html}"], |
| banksean | d5c849d | 2025-06-26 15:48:31 +0000 | [diff] [blame] | 4 | plugins: ["@tailwindcss/container-queries"], |
| Sean McCullough | b379592 | 2025-06-27 01:59:41 +0000 | [diff] [blame] | 5 | theme: { |
| 6 | extend: { |
| 7 | animation: { |
| 8 | "fade-in": "fadeIn 0.3s ease-in-out", |
| 9 | }, |
| 10 | keyframes: { |
| 11 | fadeIn: { |
| 12 | "0%": { |
| 13 | opacity: "0", |
| 14 | transform: "translateX(-50%) translateY(10px)", |
| 15 | }, |
| 16 | "100%": { |
| 17 | opacity: "1", |
| 18 | transform: "translateX(-50%) translateY(0)", |
| 19 | }, |
| 20 | }, |
| 21 | }, |
| 22 | }, |
| 23 | }, |
| Sean McCullough | bf66a2f | 2025-06-23 21:53:55 -0700 | [diff] [blame] | 24 | }; |