aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/tailwind.config.ts
blob: a986f93bd25c287092bbe926c916ba98b429315b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import type { Config } from "tailwindcss";

export default {
	content: ["./app/**/{**,.client,.server}/**/*.{js,jsx,ts,tsx}"],
	theme: {
		extend: {
			fontSize: {
				"10xl": "16rem",
			},
		},
	},
	plugins: [],
} satisfies Config;