This commit is contained in:
Andras Bacsai
2025-03-10 15:11:25 +01:00
parent 6727b18539
commit 106937cc0f
17 changed files with 13628 additions and 0 deletions

22
remix/tailwind.config.ts Normal file
View File

@@ -0,0 +1,22 @@
import type { Config } from "tailwindcss";
export default {
content: ["./app/**/{**,.client,.server}/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontFamily: {
sans: [
"Inter",
"ui-sans-serif",
"system-ui",
"sans-serif",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji",
],
},
},
},
plugins: [],
} satisfies Config;