website/tailwind.config.js
2023-03-05 10:13:32 +01:00

20 lines
406 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./app/**/*.{ts,tsx}"],
theme: {
extend: {
animation: {
blink: "blink 1.5s linear infinite alternate",
},
keyframes: {
blink: {
"from, 49.9%": { opacity: 0 },
"to, 50%": { opacity: 1 },
},
},
},
},
plugins: [require("@tailwindcss/typography")],
};