cleek 2.11.1 → 2.11.2
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 -6
- package/dist/cleek-styles/tiny-tailwind/bg-color.styl +161 -161
- package/dist/cleek-styles/tiny-tailwind/border-color.styl +161 -161
- package/dist/cleek-styles/tiny-tailwind/border.styl +63 -63
- package/dist/cleek-styles/tiny-tailwind/flex-direction.styl +8 -8
- package/dist/cleek-styles/tiny-tailwind/flex-grow.styl +10 -10
- package/dist/cleek-styles/tiny-tailwind/font-size.styl +24 -24
- package/dist/cleek-styles/tiny-tailwind/grid.styl +87 -87
- package/dist/cleek-styles/tiny-tailwind/height.styl +96 -96
- package/dist/cleek-styles/tiny-tailwind/inset.styl +328 -328
- package/dist/cleek-styles/tiny-tailwind/leading.styl +28 -28
- package/dist/cleek-styles/tiny-tailwind/object-fit.styl +20 -20
- package/dist/cleek-styles/tiny-tailwind/opacity.styl +30 -30
- package/dist/cleek-styles/tiny-tailwind/pointer-events.styl +4 -4
- package/dist/cleek-styles/tiny-tailwind/shadow.styl +16 -16
- package/dist/cleek-styles/tiny-tailwind/size-constraints.styl +127 -127
- package/dist/cleek-styles/tiny-tailwind/text-color.styl +159 -159
- package/dist/cleek-styles/tiny-tailwind/text-decoration.styl +8 -8
- package/dist/cleek-styles/tiny-tailwind/text-overflow.styl +38 -38
- package/dist/cleek-styles/tiny-tailwind/text-transform.styl +8 -8
- package/dist/cleek-styles/tiny-tailwind/transition.styl +55 -55
- package/dist/cleek-styles/tiny-tailwind/user-select.styl +8 -8
- package/dist/cleek-styles/tiny-tailwind/visibility.styl +4 -4
- package/dist/cleek-styles/tiny-tailwind/z-index.styl +14 -14
- package/dist/main.cjs.js +1 -1
- package/dist/main.css +1 -1
- package/dist/main.es.js +816 -793
- package/package.json +1 -1
|
@@ -1,328 +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%
|
|
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%
|
|
@@ -1,28 +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
|
|
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
|