cleek 2.10.85 → 2.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cleek-styles/tiny-tailwind/aspect-ratio.styl +6 -0
- package/dist/cleek-styles/tiny-tailwind/bg-color.styl +161 -0
- package/dist/cleek-styles/tiny-tailwind/border-color.styl +161 -0
- package/dist/cleek-styles/tiny-tailwind/border.styl +63 -0
- package/dist/cleek-styles/tiny-tailwind/flex-grow.styl +10 -0
- package/dist/cleek-styles/tiny-tailwind/font-size.styl +24 -0
- package/dist/cleek-styles/tiny-tailwind/grid.styl +87 -0
- package/dist/cleek-styles/tiny-tailwind/height.styl +96 -0
- package/dist/cleek-styles/tiny-tailwind/index.styl +23 -0
- package/dist/cleek-styles/tiny-tailwind/inset.styl +328 -0
- package/dist/cleek-styles/tiny-tailwind/leading.styl +28 -0
- package/dist/cleek-styles/tiny-tailwind/object-fit.styl +20 -0
- package/dist/cleek-styles/tiny-tailwind/opacity.styl +30 -0
- package/dist/cleek-styles/tiny-tailwind/pointer-events.styl +4 -0
- package/dist/cleek-styles/tiny-tailwind/shadow.styl +16 -0
- package/dist/cleek-styles/tiny-tailwind/size-constraints.styl +127 -0
- package/dist/cleek-styles/tiny-tailwind/text-color.styl +159 -0
- package/dist/cleek-styles/tiny-tailwind/text-decoration.styl +8 -0
- package/dist/cleek-styles/tiny-tailwind/text-overflow.styl +38 -0
- package/dist/cleek-styles/tiny-tailwind/text-transform.styl +8 -0
- package/dist/cleek-styles/tiny-tailwind/transition.styl +55 -0
- package/dist/cleek-styles/tiny-tailwind/user-select.styl +8 -0
- package/dist/cleek-styles/tiny-tailwind/visibility.styl +4 -0
- package/dist/cleek-styles/tiny-tailwind/z-index.styl +14 -0
- package/dist/main.cjs.js +1 -1
- package/dist/main.css +1 -1
- package/dist/main.es.js +5 -5
- package/dist/types/components/ck-input.vue.d.ts +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,328 @@
|
|
|
1
|
+
// inset (top + right + bottom + left)
|
|
2
|
+
.inset-0
|
|
3
|
+
top 0px
|
|
4
|
+
right 0px
|
|
5
|
+
bottom 0px
|
|
6
|
+
left 0px
|
|
7
|
+
.inset-px
|
|
8
|
+
top 1px
|
|
9
|
+
right 1px
|
|
10
|
+
bottom 1px
|
|
11
|
+
left 1px
|
|
12
|
+
.inset-0.5
|
|
13
|
+
top 0.125rem
|
|
14
|
+
right 0.125rem
|
|
15
|
+
bottom 0.125rem
|
|
16
|
+
left 0.125rem
|
|
17
|
+
.inset-1
|
|
18
|
+
top 0.25rem
|
|
19
|
+
right 0.25rem
|
|
20
|
+
bottom 0.25rem
|
|
21
|
+
left 0.25rem
|
|
22
|
+
.inset-2
|
|
23
|
+
top 0.5rem
|
|
24
|
+
right 0.5rem
|
|
25
|
+
bottom 0.5rem
|
|
26
|
+
left 0.5rem
|
|
27
|
+
.inset-4
|
|
28
|
+
top 1rem
|
|
29
|
+
right 1rem
|
|
30
|
+
bottom 1rem
|
|
31
|
+
left 1rem
|
|
32
|
+
.inset-auto
|
|
33
|
+
top auto
|
|
34
|
+
right auto
|
|
35
|
+
bottom auto
|
|
36
|
+
left auto
|
|
37
|
+
.inset-1_2
|
|
38
|
+
top 50%
|
|
39
|
+
right 50%
|
|
40
|
+
bottom 50%
|
|
41
|
+
left 50%
|
|
42
|
+
.inset-full
|
|
43
|
+
top 100%
|
|
44
|
+
right 100%
|
|
45
|
+
bottom 100%
|
|
46
|
+
left 100%
|
|
47
|
+
|
|
48
|
+
// inset-x (left + right)
|
|
49
|
+
.inset-x-0
|
|
50
|
+
left 0px
|
|
51
|
+
right 0px
|
|
52
|
+
.inset-x-px
|
|
53
|
+
left 1px
|
|
54
|
+
right 1px
|
|
55
|
+
.inset-x-auto
|
|
56
|
+
left auto
|
|
57
|
+
right auto
|
|
58
|
+
.inset-x-1_2
|
|
59
|
+
left 50%
|
|
60
|
+
right 50%
|
|
61
|
+
.inset-x-full
|
|
62
|
+
left 100%
|
|
63
|
+
right 100%
|
|
64
|
+
|
|
65
|
+
// inset-y (top + bottom)
|
|
66
|
+
.inset-y-0
|
|
67
|
+
top 0px
|
|
68
|
+
bottom 0px
|
|
69
|
+
.inset-y-px
|
|
70
|
+
top 1px
|
|
71
|
+
bottom 1px
|
|
72
|
+
.inset-y-auto
|
|
73
|
+
top auto
|
|
74
|
+
bottom auto
|
|
75
|
+
.inset-y-1_2
|
|
76
|
+
top 50%
|
|
77
|
+
bottom 50%
|
|
78
|
+
.inset-y-full
|
|
79
|
+
top 100%
|
|
80
|
+
bottom 100%
|
|
81
|
+
|
|
82
|
+
// top
|
|
83
|
+
.top-0
|
|
84
|
+
top 0px
|
|
85
|
+
.top-px
|
|
86
|
+
top 1px
|
|
87
|
+
.top-0.5
|
|
88
|
+
top 0.125rem
|
|
89
|
+
.top-1
|
|
90
|
+
top 0.25rem
|
|
91
|
+
.top-1.5
|
|
92
|
+
top 0.375rem
|
|
93
|
+
.top-2
|
|
94
|
+
top 0.5rem
|
|
95
|
+
.top-2.5
|
|
96
|
+
top 0.625rem
|
|
97
|
+
.top-3
|
|
98
|
+
top 0.75rem
|
|
99
|
+
.top-3.5
|
|
100
|
+
top 0.875rem
|
|
101
|
+
.top-4
|
|
102
|
+
top 1rem
|
|
103
|
+
.top-5
|
|
104
|
+
top 1.25rem
|
|
105
|
+
.top-6
|
|
106
|
+
top 1.5rem
|
|
107
|
+
.top-7
|
|
108
|
+
top 1.75rem
|
|
109
|
+
.top-8
|
|
110
|
+
top 2rem
|
|
111
|
+
.top-10
|
|
112
|
+
top 2.5rem
|
|
113
|
+
.top-12
|
|
114
|
+
top 3rem
|
|
115
|
+
.top-16
|
|
116
|
+
top 4rem
|
|
117
|
+
.top-20
|
|
118
|
+
top 5rem
|
|
119
|
+
.top-24
|
|
120
|
+
top 6rem
|
|
121
|
+
.top-32
|
|
122
|
+
top 8rem
|
|
123
|
+
.top-40
|
|
124
|
+
top 10rem
|
|
125
|
+
.top-48
|
|
126
|
+
top 12rem
|
|
127
|
+
.top-64
|
|
128
|
+
top 16rem
|
|
129
|
+
.top-auto
|
|
130
|
+
top auto
|
|
131
|
+
.top-1_2
|
|
132
|
+
top 50%
|
|
133
|
+
.top-1_3
|
|
134
|
+
top 33.333333%
|
|
135
|
+
.top-2_3
|
|
136
|
+
top 66.666667%
|
|
137
|
+
.top-1_4
|
|
138
|
+
top 25%
|
|
139
|
+
.top-3_4
|
|
140
|
+
top 75%
|
|
141
|
+
.top-full
|
|
142
|
+
top 100%
|
|
143
|
+
|
|
144
|
+
// right
|
|
145
|
+
.right-0
|
|
146
|
+
right 0px
|
|
147
|
+
.right-px
|
|
148
|
+
right 1px
|
|
149
|
+
.right-0.5
|
|
150
|
+
right 0.125rem
|
|
151
|
+
.right-1
|
|
152
|
+
right 0.25rem
|
|
153
|
+
.right-1.5
|
|
154
|
+
right 0.375rem
|
|
155
|
+
.right-2
|
|
156
|
+
right 0.5rem
|
|
157
|
+
.right-2.5
|
|
158
|
+
right 0.625rem
|
|
159
|
+
.right-3
|
|
160
|
+
right 0.75rem
|
|
161
|
+
.right-3.5
|
|
162
|
+
right 0.875rem
|
|
163
|
+
.right-4
|
|
164
|
+
right 1rem
|
|
165
|
+
.right-5
|
|
166
|
+
right 1.25rem
|
|
167
|
+
.right-6
|
|
168
|
+
right 1.5rem
|
|
169
|
+
.right-7
|
|
170
|
+
right 1.75rem
|
|
171
|
+
.right-8
|
|
172
|
+
right 2rem
|
|
173
|
+
.right-10
|
|
174
|
+
right 2.5rem
|
|
175
|
+
.right-12
|
|
176
|
+
right 3rem
|
|
177
|
+
.right-16
|
|
178
|
+
right 4rem
|
|
179
|
+
.right-20
|
|
180
|
+
right 5rem
|
|
181
|
+
.right-24
|
|
182
|
+
right 6rem
|
|
183
|
+
.right-32
|
|
184
|
+
right 8rem
|
|
185
|
+
.right-40
|
|
186
|
+
right 10rem
|
|
187
|
+
.right-48
|
|
188
|
+
right 12rem
|
|
189
|
+
.right-64
|
|
190
|
+
right 16rem
|
|
191
|
+
.right-auto
|
|
192
|
+
right auto
|
|
193
|
+
.right-1_2
|
|
194
|
+
right 50%
|
|
195
|
+
.right-1_3
|
|
196
|
+
right 33.333333%
|
|
197
|
+
.right-2_3
|
|
198
|
+
right 66.666667%
|
|
199
|
+
.right-1_4
|
|
200
|
+
right 25%
|
|
201
|
+
.right-3_4
|
|
202
|
+
right 75%
|
|
203
|
+
.right-full
|
|
204
|
+
right 100%
|
|
205
|
+
|
|
206
|
+
// bottom
|
|
207
|
+
.bottom-0
|
|
208
|
+
bottom 0px
|
|
209
|
+
.bottom-px
|
|
210
|
+
bottom 1px
|
|
211
|
+
.bottom-0.5
|
|
212
|
+
bottom 0.125rem
|
|
213
|
+
.bottom-1
|
|
214
|
+
bottom 0.25rem
|
|
215
|
+
.bottom-1.5
|
|
216
|
+
bottom 0.375rem
|
|
217
|
+
.bottom-2
|
|
218
|
+
bottom 0.5rem
|
|
219
|
+
.bottom-2.5
|
|
220
|
+
bottom 0.625rem
|
|
221
|
+
.bottom-3
|
|
222
|
+
bottom 0.75rem
|
|
223
|
+
.bottom-3.5
|
|
224
|
+
bottom 0.875rem
|
|
225
|
+
.bottom-4
|
|
226
|
+
bottom 1rem
|
|
227
|
+
.bottom-5
|
|
228
|
+
bottom 1.25rem
|
|
229
|
+
.bottom-6
|
|
230
|
+
bottom 1.5rem
|
|
231
|
+
.bottom-7
|
|
232
|
+
bottom 1.75rem
|
|
233
|
+
.bottom-8
|
|
234
|
+
bottom 2rem
|
|
235
|
+
.bottom-10
|
|
236
|
+
bottom 2.5rem
|
|
237
|
+
.bottom-12
|
|
238
|
+
bottom 3rem
|
|
239
|
+
.bottom-16
|
|
240
|
+
bottom 4rem
|
|
241
|
+
.bottom-20
|
|
242
|
+
bottom 5rem
|
|
243
|
+
.bottom-24
|
|
244
|
+
bottom 6rem
|
|
245
|
+
.bottom-32
|
|
246
|
+
bottom 8rem
|
|
247
|
+
.bottom-40
|
|
248
|
+
bottom 10rem
|
|
249
|
+
.bottom-48
|
|
250
|
+
bottom 12rem
|
|
251
|
+
.bottom-64
|
|
252
|
+
bottom 16rem
|
|
253
|
+
.bottom-auto
|
|
254
|
+
bottom auto
|
|
255
|
+
.bottom-1_2
|
|
256
|
+
bottom 50%
|
|
257
|
+
.bottom-1_3
|
|
258
|
+
bottom 33.333333%
|
|
259
|
+
.bottom-2_3
|
|
260
|
+
bottom 66.666667%
|
|
261
|
+
.bottom-1_4
|
|
262
|
+
bottom 25%
|
|
263
|
+
.bottom-3_4
|
|
264
|
+
bottom 75%
|
|
265
|
+
.bottom-full
|
|
266
|
+
bottom 100%
|
|
267
|
+
|
|
268
|
+
// left
|
|
269
|
+
.left-0
|
|
270
|
+
left 0px
|
|
271
|
+
.left-px
|
|
272
|
+
left 1px
|
|
273
|
+
.left-0.5
|
|
274
|
+
left 0.125rem
|
|
275
|
+
.left-1
|
|
276
|
+
left 0.25rem
|
|
277
|
+
.left-1.5
|
|
278
|
+
left 0.375rem
|
|
279
|
+
.left-2
|
|
280
|
+
left 0.5rem
|
|
281
|
+
.left-2.5
|
|
282
|
+
left 0.625rem
|
|
283
|
+
.left-3
|
|
284
|
+
left 0.75rem
|
|
285
|
+
.left-3.5
|
|
286
|
+
left 0.875rem
|
|
287
|
+
.left-4
|
|
288
|
+
left 1rem
|
|
289
|
+
.left-5
|
|
290
|
+
left 1.25rem
|
|
291
|
+
.left-6
|
|
292
|
+
left 1.5rem
|
|
293
|
+
.left-7
|
|
294
|
+
left 1.75rem
|
|
295
|
+
.left-8
|
|
296
|
+
left 2rem
|
|
297
|
+
.left-10
|
|
298
|
+
left 2.5rem
|
|
299
|
+
.left-12
|
|
300
|
+
left 3rem
|
|
301
|
+
.left-16
|
|
302
|
+
left 4rem
|
|
303
|
+
.left-20
|
|
304
|
+
left 5rem
|
|
305
|
+
.left-24
|
|
306
|
+
left 6rem
|
|
307
|
+
.left-32
|
|
308
|
+
left 8rem
|
|
309
|
+
.left-40
|
|
310
|
+
left 10rem
|
|
311
|
+
.left-48
|
|
312
|
+
left 12rem
|
|
313
|
+
.left-64
|
|
314
|
+
left 16rem
|
|
315
|
+
.left-auto
|
|
316
|
+
left auto
|
|
317
|
+
.left-1_2
|
|
318
|
+
left 50%
|
|
319
|
+
.left-1_3
|
|
320
|
+
left 33.333333%
|
|
321
|
+
.left-2_3
|
|
322
|
+
left 66.666667%
|
|
323
|
+
.left-1_4
|
|
324
|
+
left 25%
|
|
325
|
+
.left-3_4
|
|
326
|
+
left 75%
|
|
327
|
+
.left-full
|
|
328
|
+
left 100%
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
.leading-none
|
|
2
|
+
line-height 1
|
|
3
|
+
.leading-tight
|
|
4
|
+
line-height 1.25
|
|
5
|
+
.leading-snug
|
|
6
|
+
line-height 1.375
|
|
7
|
+
.leading-normal
|
|
8
|
+
line-height 1.5
|
|
9
|
+
.leading-relaxed
|
|
10
|
+
line-height 1.625
|
|
11
|
+
.leading-loose
|
|
12
|
+
line-height 2
|
|
13
|
+
.leading-3
|
|
14
|
+
line-height 0.75rem
|
|
15
|
+
.leading-4
|
|
16
|
+
line-height 1rem
|
|
17
|
+
.leading-5
|
|
18
|
+
line-height 1.25rem
|
|
19
|
+
.leading-6
|
|
20
|
+
line-height 1.5rem
|
|
21
|
+
.leading-7
|
|
22
|
+
line-height 1.75rem
|
|
23
|
+
.leading-8
|
|
24
|
+
line-height 2rem
|
|
25
|
+
.leading-9
|
|
26
|
+
line-height 2.25rem
|
|
27
|
+
.leading-10
|
|
28
|
+
line-height 2.5rem
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
.object-contain
|
|
2
|
+
object-fit contain
|
|
3
|
+
.object-cover
|
|
4
|
+
object-fit cover
|
|
5
|
+
.object-fill
|
|
6
|
+
object-fit fill
|
|
7
|
+
.object-none
|
|
8
|
+
object-fit none
|
|
9
|
+
.object-scale-down
|
|
10
|
+
object-fit scale-down
|
|
11
|
+
.object-center
|
|
12
|
+
object-position center
|
|
13
|
+
.object-top
|
|
14
|
+
object-position top
|
|
15
|
+
.object-bottom
|
|
16
|
+
object-position bottom
|
|
17
|
+
.object-left
|
|
18
|
+
object-position left
|
|
19
|
+
.object-right
|
|
20
|
+
object-position right
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
.opacity-0
|
|
2
|
+
opacity 0
|
|
3
|
+
.opacity-5
|
|
4
|
+
opacity 0.05
|
|
5
|
+
.opacity-10
|
|
6
|
+
opacity 0.1
|
|
7
|
+
.opacity-20
|
|
8
|
+
opacity 0.2
|
|
9
|
+
.opacity-25
|
|
10
|
+
opacity 0.25
|
|
11
|
+
.opacity-30
|
|
12
|
+
opacity 0.3
|
|
13
|
+
.opacity-40
|
|
14
|
+
opacity 0.4
|
|
15
|
+
.opacity-50
|
|
16
|
+
opacity 0.5
|
|
17
|
+
.opacity-60
|
|
18
|
+
opacity 0.6
|
|
19
|
+
.opacity-70
|
|
20
|
+
opacity 0.7
|
|
21
|
+
.opacity-75
|
|
22
|
+
opacity 0.75
|
|
23
|
+
.opacity-80
|
|
24
|
+
opacity 0.8
|
|
25
|
+
.opacity-90
|
|
26
|
+
opacity 0.9
|
|
27
|
+
.opacity-95
|
|
28
|
+
opacity 0.95
|
|
29
|
+
.opacity-100
|
|
30
|
+
opacity 1
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
.shadow-none
|
|
2
|
+
box-shadow none
|
|
3
|
+
.shadow-sm
|
|
4
|
+
box-shadow 0 1px 2px 0 rgb(0 0 0 / 0.05)
|
|
5
|
+
.shadow
|
|
6
|
+
box-shadow 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)
|
|
7
|
+
.shadow-md
|
|
8
|
+
box-shadow 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)
|
|
9
|
+
.shadow-lg
|
|
10
|
+
box-shadow 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)
|
|
11
|
+
.shadow-xl
|
|
12
|
+
box-shadow 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)
|
|
13
|
+
.shadow-2xl
|
|
14
|
+
box-shadow 0 25px 50px -12px rgb(0 0 0 / 0.25)
|
|
15
|
+
.shadow-inner
|
|
16
|
+
box-shadow inset 0 2px 4px 0 rgb(0 0 0 / 0.05)
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
// Max width
|
|
2
|
+
.max-w-none
|
|
3
|
+
max-width none
|
|
4
|
+
.max-w-xs
|
|
5
|
+
max-width 20rem
|
|
6
|
+
.max-w-sm
|
|
7
|
+
max-width 24rem
|
|
8
|
+
.max-w-md
|
|
9
|
+
max-width 28rem
|
|
10
|
+
.max-w-lg
|
|
11
|
+
max-width 32rem
|
|
12
|
+
.max-w-xl
|
|
13
|
+
max-width 36rem
|
|
14
|
+
.max-w-2xl
|
|
15
|
+
max-width 42rem
|
|
16
|
+
.max-w-3xl
|
|
17
|
+
max-width 48rem
|
|
18
|
+
.max-w-4xl
|
|
19
|
+
max-width 56rem
|
|
20
|
+
.max-w-5xl
|
|
21
|
+
max-width 64rem
|
|
22
|
+
.max-w-6xl
|
|
23
|
+
max-width 72rem
|
|
24
|
+
.max-w-7xl
|
|
25
|
+
max-width 80rem
|
|
26
|
+
.max-w-full
|
|
27
|
+
max-width 100%
|
|
28
|
+
.max-w-screen
|
|
29
|
+
max-width 100vw
|
|
30
|
+
.max-w-prose
|
|
31
|
+
max-width 65ch
|
|
32
|
+
.max-w-min
|
|
33
|
+
max-width min-content
|
|
34
|
+
.max-w-max
|
|
35
|
+
max-width max-content
|
|
36
|
+
.max-w-fit
|
|
37
|
+
max-width fit-content
|
|
38
|
+
|
|
39
|
+
// Min width
|
|
40
|
+
.min-w-0
|
|
41
|
+
min-width 0px
|
|
42
|
+
.min-w-full
|
|
43
|
+
min-width 100%
|
|
44
|
+
.min-w-min
|
|
45
|
+
min-width min-content
|
|
46
|
+
.min-w-max
|
|
47
|
+
min-width max-content
|
|
48
|
+
.min-w-fit
|
|
49
|
+
min-width fit-content
|
|
50
|
+
|
|
51
|
+
// Max height
|
|
52
|
+
.max-h-0
|
|
53
|
+
max-height 0px
|
|
54
|
+
.max-h-px
|
|
55
|
+
max-height 1px
|
|
56
|
+
.max-h-0.5
|
|
57
|
+
max-height 0.125rem
|
|
58
|
+
.max-h-1
|
|
59
|
+
max-height 0.25rem
|
|
60
|
+
.max-h-2
|
|
61
|
+
max-height 0.5rem
|
|
62
|
+
.max-h-4
|
|
63
|
+
max-height 1rem
|
|
64
|
+
.max-h-6
|
|
65
|
+
max-height 1.5rem
|
|
66
|
+
.max-h-8
|
|
67
|
+
max-height 2rem
|
|
68
|
+
.max-h-10
|
|
69
|
+
max-height 2.5rem
|
|
70
|
+
.max-h-12
|
|
71
|
+
max-height 3rem
|
|
72
|
+
.max-h-16
|
|
73
|
+
max-height 4rem
|
|
74
|
+
.max-h-20
|
|
75
|
+
max-height 5rem
|
|
76
|
+
.max-h-24
|
|
77
|
+
max-height 6rem
|
|
78
|
+
.max-h-28
|
|
79
|
+
max-height 7rem
|
|
80
|
+
.max-h-32
|
|
81
|
+
max-height 8rem
|
|
82
|
+
.max-h-36
|
|
83
|
+
max-height 9rem
|
|
84
|
+
.max-h-40
|
|
85
|
+
max-height 10rem
|
|
86
|
+
.max-h-48
|
|
87
|
+
max-height 12rem
|
|
88
|
+
.max-h-56
|
|
89
|
+
max-height 14rem
|
|
90
|
+
.max-h-64
|
|
91
|
+
max-height 16rem
|
|
92
|
+
.max-h-72
|
|
93
|
+
max-height 18rem
|
|
94
|
+
.max-h-80
|
|
95
|
+
max-height 20rem
|
|
96
|
+
.max-h-96
|
|
97
|
+
max-height 24rem
|
|
98
|
+
.max-h-full
|
|
99
|
+
max-height 100%
|
|
100
|
+
.max-h-screen
|
|
101
|
+
max-height 100vh
|
|
102
|
+
.max-h-none
|
|
103
|
+
max-height none
|
|
104
|
+
.max-h-min
|
|
105
|
+
max-height min-content
|
|
106
|
+
.max-h-max
|
|
107
|
+
max-height max-content
|
|
108
|
+
.max-h-fit
|
|
109
|
+
max-height fit-content
|
|
110
|
+
|
|
111
|
+
// Min height
|
|
112
|
+
.min-h-0
|
|
113
|
+
min-height 0px
|
|
114
|
+
.min-h-full
|
|
115
|
+
min-height 100%
|
|
116
|
+
.min-h-screen
|
|
117
|
+
min-height 100vh
|
|
118
|
+
.min-h-svh
|
|
119
|
+
min-height 100svh
|
|
120
|
+
.min-h-dvh
|
|
121
|
+
min-height 100dvh
|
|
122
|
+
.min-h-min
|
|
123
|
+
min-height min-content
|
|
124
|
+
.min-h-max
|
|
125
|
+
min-height max-content
|
|
126
|
+
.min-h-fit
|
|
127
|
+
min-height fit-content
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
// Red
|
|
2
|
+
.text-red-50
|
|
3
|
+
color #fef2f2
|
|
4
|
+
.text-red-100
|
|
5
|
+
color #fee2e2
|
|
6
|
+
.text-red-200
|
|
7
|
+
color #fecaca
|
|
8
|
+
.text-red-300
|
|
9
|
+
color #fca5a5
|
|
10
|
+
.text-red-400
|
|
11
|
+
color #f87171
|
|
12
|
+
.text-red-500
|
|
13
|
+
color #ef4444
|
|
14
|
+
.text-red-600
|
|
15
|
+
color #dc2626
|
|
16
|
+
.text-red-700
|
|
17
|
+
color #b91c1c
|
|
18
|
+
.text-red-800
|
|
19
|
+
color #991b1b
|
|
20
|
+
.text-red-900
|
|
21
|
+
color #7f1d1d
|
|
22
|
+
|
|
23
|
+
// Green
|
|
24
|
+
.text-green-50
|
|
25
|
+
color #f0fdf4
|
|
26
|
+
.text-green-100
|
|
27
|
+
color #dcfce7
|
|
28
|
+
.text-green-200
|
|
29
|
+
color #bbf7d0
|
|
30
|
+
.text-green-300
|
|
31
|
+
color #86efac
|
|
32
|
+
.text-green-400
|
|
33
|
+
color #4ade80
|
|
34
|
+
.text-green-500
|
|
35
|
+
color #22c55e
|
|
36
|
+
.text-green-600
|
|
37
|
+
color #16a34a
|
|
38
|
+
.text-green-700
|
|
39
|
+
color #15803d
|
|
40
|
+
.text-green-800
|
|
41
|
+
color #166534
|
|
42
|
+
.text-green-900
|
|
43
|
+
color #14532d
|
|
44
|
+
|
|
45
|
+
// Blue
|
|
46
|
+
.text-blue-50
|
|
47
|
+
color #eff6ff
|
|
48
|
+
.text-blue-100
|
|
49
|
+
color #dbeafe
|
|
50
|
+
.text-blue-200
|
|
51
|
+
color #bfdbfe
|
|
52
|
+
.text-blue-300
|
|
53
|
+
color #93c5fd
|
|
54
|
+
.text-blue-400
|
|
55
|
+
color #60a5fa
|
|
56
|
+
.text-blue-500
|
|
57
|
+
color #3b82f6
|
|
58
|
+
.text-blue-600
|
|
59
|
+
color #2563eb
|
|
60
|
+
.text-blue-700
|
|
61
|
+
color #1d4ed8
|
|
62
|
+
.text-blue-800
|
|
63
|
+
color #1e40af
|
|
64
|
+
.text-blue-900
|
|
65
|
+
color #1e3a8a
|
|
66
|
+
|
|
67
|
+
// Yellow
|
|
68
|
+
.text-yellow-50
|
|
69
|
+
color #fefce8
|
|
70
|
+
.text-yellow-100
|
|
71
|
+
color #fef9c3
|
|
72
|
+
.text-yellow-200
|
|
73
|
+
color #fef08a
|
|
74
|
+
.text-yellow-300
|
|
75
|
+
color #fde047
|
|
76
|
+
.text-yellow-400
|
|
77
|
+
color #facc15
|
|
78
|
+
.text-yellow-500
|
|
79
|
+
color #eab308
|
|
80
|
+
.text-yellow-600
|
|
81
|
+
color #ca8a04
|
|
82
|
+
.text-yellow-700
|
|
83
|
+
color #a16207
|
|
84
|
+
.text-yellow-800
|
|
85
|
+
color #854d0e
|
|
86
|
+
.text-yellow-900
|
|
87
|
+
color #713f12
|
|
88
|
+
|
|
89
|
+
// Orange
|
|
90
|
+
.text-orange-50
|
|
91
|
+
color #fff7ed
|
|
92
|
+
.text-orange-100
|
|
93
|
+
color #ffedd5
|
|
94
|
+
.text-orange-200
|
|
95
|
+
color #fed7aa
|
|
96
|
+
.text-orange-300
|
|
97
|
+
color #fdba74
|
|
98
|
+
.text-orange-400
|
|
99
|
+
color #fb923c
|
|
100
|
+
.text-orange-500
|
|
101
|
+
color #f97316
|
|
102
|
+
.text-orange-600
|
|
103
|
+
color #ea580c
|
|
104
|
+
.text-orange-700
|
|
105
|
+
color #c2410c
|
|
106
|
+
.text-orange-800
|
|
107
|
+
color #9a3412
|
|
108
|
+
.text-orange-900
|
|
109
|
+
color #7c2d12
|
|
110
|
+
|
|
111
|
+
// Purple
|
|
112
|
+
.text-purple-50
|
|
113
|
+
color #faf5ff
|
|
114
|
+
.text-purple-100
|
|
115
|
+
color #f3e8ff
|
|
116
|
+
.text-purple-200
|
|
117
|
+
color #e9d5ff
|
|
118
|
+
.text-purple-300
|
|
119
|
+
color #d8b4fe
|
|
120
|
+
.text-purple-400
|
|
121
|
+
color #c084fc
|
|
122
|
+
.text-purple-500
|
|
123
|
+
color #a855f7
|
|
124
|
+
.text-purple-600
|
|
125
|
+
color #9333ea
|
|
126
|
+
.text-purple-700
|
|
127
|
+
color #7e22ce
|
|
128
|
+
.text-purple-800
|
|
129
|
+
color #6b21a8
|
|
130
|
+
.text-purple-900
|
|
131
|
+
color #581c87
|
|
132
|
+
|
|
133
|
+
// Gray
|
|
134
|
+
.text-gray-50
|
|
135
|
+
color #f9fafb
|
|
136
|
+
.text-gray-100
|
|
137
|
+
color #f3f4f6
|
|
138
|
+
.text-gray-200
|
|
139
|
+
color #e5e7eb
|
|
140
|
+
.text-gray-300
|
|
141
|
+
color #d1d5db
|
|
142
|
+
.text-gray-400
|
|
143
|
+
color #9ca3af
|
|
144
|
+
.text-gray-500
|
|
145
|
+
color #6b7280
|
|
146
|
+
.text-gray-600
|
|
147
|
+
color #4b5563
|
|
148
|
+
.text-gray-700
|
|
149
|
+
color #374151
|
|
150
|
+
.text-gray-800
|
|
151
|
+
color #1f2937
|
|
152
|
+
.text-gray-900
|
|
153
|
+
color #111827
|
|
154
|
+
|
|
155
|
+
// White / Black
|
|
156
|
+
.text-white
|
|
157
|
+
color #ffffff
|
|
158
|
+
.text-black
|
|
159
|
+
color #000000
|