forked from Sydney-Informatics-Hub/ace3tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
40 lines (39 loc) · 955 Bytes
/
tailwind.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import type { Config } from "tailwindcss";
import flowbite from "flowbite-react/tailwind";
const config: Config = {
content: ["./app/**/*.{js,ts,jsx,tsx,mdx}", flowbite.content()],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-sans)"],
heading: ["var(--heading-font)"],
},
width: {
"100px": "100px",
"150px": "150px",
"200px": "200px",
"300px": "300px",
"400px": "400px",
"500px": "500px",
"600px": "600px",
"700px": "700px",
"800px": "800px",
},
height: {
"100px": "100px",
"150px": "150px",
"200px": "200px",
"250px": "250px",
"300px": "300px",
"400px": "400px",
"450px": "450px",
"500px": "500px",
"600px": "600px",
"700px": "700px",
"800px": "800px",
},
},
},
plugins: [flowbite.plugin()],
};
export default config;