blob: f51be72ca7dfe2d8cdbd7674611c17f7d23c4643 [file] [log] [blame]
Sean McCulloughbf66a2f2025-06-23 21:53:55 -07001/** @type {import('tailwindcss').Config} */
2export default {
3 content: ["./src/**/*.{js,ts,jsx,tsx,html}"],
bankseand5c849d2025-06-26 15:48:31 +00004 plugins: ["@tailwindcss/container-queries"],
Sean McCulloughb3795922025-06-27 01:59:41 +00005 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 McCulloughbf66a2f2025-06-23 21:53:55 -070024};