-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.json
96 lines (96 loc) · 1.51 KB
/
tailwind.json
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"mt-55pix": {
"style": {
"marginTop": 55
}
},
"mt-2pix": {
"style": {
"marginTop": 2
}
},
"h-32": {
"style": {
"height": 128
}
},
"flex-1": {
"style": {
"flexGrow": 1,
"flexShrink": 1,
"flexBasis": "0%"
}
},
"flex-col": {
"style": {
"flexDirection": "column"
}
},
"items-center": {
"style": {
"alignItems": "center"
}
},
"justify-center": {
"style": {
"justifyContent": "center"
}
},
"rounded-md": {
"style": {
"borderTopLeftRadius": 6,
"borderTopRightRadius": 6,
"borderBottomRightRadius": 6,
"borderBottomLeftRadius": 6
}
},
"border-3pix": {
"style": {
"borderTopWidth": 3,
"borderRightWidth": 3,
"borderBottomWidth": 3,
"borderLeftWidth": 3
}
},
"border-slate-700": {
"style": {
"--tw-border-opacity": 1,
"borderTopColor": "rgb(51 65 85 / var(--tw-border-opacity))",
"borderRightColor": "rgb(51 65 85 / var(--tw-border-opacity))",
"borderBottomColor": "rgb(51 65 85 / var(--tw-border-opacity))",
"borderLeftColor": "rgb(51 65 85 / var(--tw-border-opacity))"
}
},
"p-20pix": {
"style": {
"paddingTop": 20,
"paddingRight": 20,
"paddingBottom": 20,
"paddingLeft": 20
}
},
"p-15pix": {
"style": {
"paddingTop": 15,
"paddingRight": 15,
"paddingBottom": 15,
"paddingLeft": 15
}
},
"px-10pix": {
"style": {
"paddingLeft": 10,
"paddingRight": 10
}
},
"text-center": {
"style": {
"textAlign": "center"
}
},
"text-42pix": {
"style": {
"fontSize": 42
}
}
}