Files
audacity.github.io/tailwind.config.cjs
2025-03-26 13:53:53 +11:00

33 lines
807 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
animation: {
fadeIn: "fadeIn 0.2s ease-in-out",
fadeInSlow: "fadeInSlow 0.3s ease-in-out forwards",
},
keyframes: {
fadeIn: {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
fadeInSlow: {
"0%": { opacity: "0", transform: "translateX(-10px)" },
"100%": { opacity: "1", transform: "translateX(0)" },
},
},
},
screens: {
xxs: "320px",
xs: "480px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
},
},
plugins: [require("@tailwindcss/typography")],
};