-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
38 lines (37 loc) · 925 Bytes
/
tailwind.config.cjs
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
// eslint-disable-next-line @typescript-eslint/no-var-requires
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
fontFamily: {
oxanium: ["Oxanium", "cursive"],
opensans: ["Open Sans", "sans-serif"],
},
// height: {
// "1/20": "5%",
// "2/20": "10%",
// "3/20": "15%",
// "4/20": "20%",
// "5/20": "25%",
// "6/20": "30%",
// "7/20": "35%",
// "8/20": "40%",
// "9/20": "45%",
// "10/20": "50%",
// "11/20": "55%",
// "12/20": "60%",
// "13/20": "65%",
// "14/20": "70%",
// "15/20": "75%",
// "16/20": "80%",
// "17/20": "85%",
// "18/20": "90%",
// "19/20": "95%",
// "20/20": "100%",
// },
},
},
plugins: [],
};