movie-explorer/tailwind.config.js

29 lines
565 B
JavaScript
Raw Permalink Normal View History

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-08 08:54:50 +00:00
sm: "640px",
md: "767px",
lg: "1023px",
xl: "1280px",
2024-10-07 21:56:43 +00:00
},
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: [],
};