2024-10-05 14:12:47 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
|
|
|
content: ["./dist/index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
|
|
theme: {
|
2024-10-07 21:56:43 +00:00
|
|
|
screens: {
|
|
|
|
largeMobile: "390px",
|
|
|
|
},
|
2024-10-06 21:46:47 +00:00
|
|
|
extend: {
|
|
|
|
aspectRatio: {
|
|
|
|
poster: "2 / 3",
|
|
|
|
},
|
2024-10-07 14:18:57 +00:00
|
|
|
keyframes: {
|
|
|
|
blur: {
|
|
|
|
"0%": { filter: "blur(10px)" },
|
|
|
|
"100%": { filter: "blur(0px)" },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
animation: {
|
|
|
|
blur: "blur 0.5s linear",
|
|
|
|
},
|
2024-10-06 21:46:47 +00:00
|
|
|
},
|
2024-10-05 14:12:47 +00:00
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
};
|