-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
71 lines (68 loc) · 1.92 KB
/
tailwind.config.js
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php",
"./storage/framework/views/*.php",
"./resources/views/**/*.blade.php",
"./resources/js/**/*.vue",
],
theme: {
extend: {
fontFamily: {
// sans: ["Space Grotesk", ...defaultTheme.fontFamily.sans],
sans: ["Poppins", ...defaultTheme.fontFamily.sans],
},
colors: {
"virtual-blue": "#0019DA",
"gray-circles": "#E5E7EB",
},
fontSize: {
'title': '1.50rem',
'body': '1.063rem',
},
width: {
23: "400px",
85: "85%",
90: "90%",
97: "97%",
92: "92%",
93: "93%",
},
// height: {
// 90: "90%"
// },
spacing: {
'90': "85vh",
'120': "80vh",
'100': "50vh",
},
gridTemplateColumns: {
16: "repeat(16, minmax(0, 1fr))",
},
zIndex: {
2: "2000",
3: "10000",
4: "1000",
900: "900",
600: "719",
},
inset: {
"4/4": "40%",
},
margin: {
22: "5.8rem",
51: "12.08rem",
58: "13.3rem",
},
strokeWidth: {
3: "3px",
},
// spacing: {
// if height of pathVertical2 is bigger than 150px
// 18: "4.7rem",
// },
},
},
plugins: [require("@tailwindcss/forms")],
};