chore: update remix to v2

This commit is contained in:
Andrea
2023-10-21 19:30:32 +02:00
parent 8222a4dfb2
commit 8a9fd697b5
15 changed files with 2367 additions and 5821 deletions

21
tailwind.config.ts Normal file
View File

@@ -0,0 +1,21 @@
import type { Config} from "tailwindcss"
export default {
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")],
} satisfies Config;