-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.css-data.json
More file actions
192 lines (192 loc) · 6.64 KB
/
Copy pathtailwind.css-data.json
File metadata and controls
192 lines (192 loc) · 6.64 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
{
"version": 1.1,
"atDirectives": [
{
"name": "@import",
"description": "Use the @import directive to inline import CSS files, including Tailwind itself.",
"references": [
{
"name": "Tailwind Documentation",
"url": "https://tailwindcss.com/docs/functions-and-directives#import-directive"
}
],
"status": "standard"
},
{
"name": "@theme",
"description": "Use the @theme directive to define your project's custom design tokens, like fonts, colors, and breakpoints.",
"references": [
{
"name": "Tailwind Documentation",
"url": "https://tailwindcss.com/docs/functions-and-directives#theme-directive"
}
],
"status": "standard"
},
{
"name": "@source",
"description": "Use the @source directive to explicitly specify source files that aren't picked up by Tailwind's automatic content detection.",
"references": [
{
"name": "Tailwind Documentation",
"url": "https://tailwindcss.com/docs/functions-and-directives#source-directive"
}
],
"status": "standard"
},
{
"name": "@utility",
"description": "Use the @utility directive to add custom utilities to your project that work with variants like hover, focus and lg.",
"references": [
{
"name": "Tailwind Documentation",
"url": "https://tailwindcss.com/docs/functions-and-directives#utility-directive"
}
],
"status": "standard"
},
{
"name": "@variant",
"description": "Use the @variant directive to apply a Tailwind variant to styles in your CSS.",
"references": [
{
"name": "Tailwind Documentation",
"url": "https://tailwindcss.com/docs/functions-and-directives#variant-directive"
}
],
"status": "standard"
},
{
"name": "@custom-variant",
"description": "Use the @custom-variant directive to add a custom variant in your project.",
"references": [
{
"name": "Tailwind Documentation",
"url": "https://tailwindcss.com/docs/functions-and-directives#custom-variant-directive"
}
],
"status": "standard"
},
{
"name": "@apply",
"description": "Use the @apply directive to inline any existing utility classes into your own custom CSS.",
"references": [
{
"name": "Tailwind Documentation",
"url": "https://tailwindcss.com/docs/functions-and-directives#apply-directive"
}
],
"status": "standard"
},
{
"name": "@reference",
"description": "If you want to use @apply or @variant in the <style> block of a Vue or Svelte component, or within CSS modules, you will need to import your theme variables, custom utilities, and custom variants to make those values available in that context. To do this without duplicating any CSS in your output, use the @reference directive to import your main stylesheet for reference without actually including the styles.",
"references": [
{
"name": "Tailwind Documentation",
"url": "https://tailwindcss.com/docs/functions-and-directives#reference-directive"
}
],
"status": "standard"
},
{
"name": "@config",
"description": "Use the @config directive to load a legacy JavaScript-based configuration file.",
"references": [
{
"name": "Tailwind Documentation",
"url": "https://tailwindcss.com/docs/functions-and-directives#config-directive"
}
],
"status": "nonstandard"
},
{
"name": "@plugin",
"description": "Use the @plugin directive to load a legacy JavaScript-based plugin.",
"references": [
{
"name": "Tailwind Documentation",
"url": "https://tailwindcss.com/docs/functions-and-directives#plugin-directive"
}
],
"status": "nonstandard"
},
{
"name": "@tailwind",
"description": "Use the @tailwind directive to insert Tailwind's base, components, utilities and variants styles into your CSS.",
"references": [
{
"name": "Tailwind V3 Documentation",
"url": "https://v3.tailwindcss.com/docs/functions-and-directives#tailwind"
}
],
"status": "obsolete"
},
{
"name": "@layer",
"description": "Use the @layer directive to tell Tailwind which “bucket” a set of custom styles belong to. Valid layers are base, components, and utilities.",
"references": [
{
"name": "Tailwind V3 Documentation",
"url": "https://v3.tailwindcss.com/docs/functions-and-directives#layer"
}
],
"status": "obsolete"
},
{
"name": "@apply",
"description": "Use the @apply to inline any existing utility classes into your own custom CSS.",
"references": [
{
"name": "Tailwind V3 Documentation",
"url": "https://v3.tailwindcss.com/docs/functions-and-directives#apply"
}
],
"status": "standard"
},
{
"name": "@config",
"description": "Use the @config directive to specify which config file Tailwind should use when compiling that CSS file.",
"references": [
{
"name": "Tailwind V3 Documentation",
"url": "https://v3.tailwindcss.com/docs/functions-and-directives#config"
}
],
"status": "nonstandard"
},
{
"name": "@variants",
"description": "Generate responsive, hover, focus, active and other variants of your own utilities by wrapping their definitions in the @variants directive.",
"references": [
{
"name": "Tailwind V2 Documentation",
"url": "https://v2.tailwindcss.com/docs/functions-and-directives#variants"
}
],
"status": "obsolete"
},
{
"name": "@responsive",
"description": "You can generate responsive variants of your own classes by wrapping their definitions in the @responsive directive.",
"references": [
{
"name": "Tailwind V2 Documentation",
"url": "https://v2.tailwindcss.com/docs/functions-and-directives#responsive"
}
],
"status": "obsolete"
},
{
"name": "@screen",
"description": "The @screen directive allows you to create media queries that reference your breakpoints by name instead of duplicating their values in your own CSS.",
"references": [
{
"name": "Tailwind V2 Documentation",
"url": "https://v2.tailwindcss.com/docs/functions-and-directives#screen"
}
],
"status": "obsolete"
}
]
}