@apolitical/component-library 9.0.0-pla.2 → 9.0.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.
Files changed (60) hide show
  1. package/accessibility/visually-hidden/visually-hidden.d.ts +1 -1
  2. package/discussion/components/add-post/add-post.d.ts +2 -0
  3. package/discussion/components/post/post.d.ts +2 -1
  4. package/discussion/components/thread/thread.d.ts +1 -1
  5. package/discussion/discussion.helpers.d.ts +1 -1
  6. package/discussion/feeds/replies-feed/components/add-reply-form/add-reply-form.d.ts +1 -1
  7. package/discussion/feeds/replies-feed/components/load-more-replies-button/load-more-replies-button.d.ts +1 -1
  8. package/discussion/feeds/replies-feed/components/reply-item/reply-item.d.ts +1 -1
  9. package/form/components/form/components/fields/input/input.d.ts +1 -1
  10. package/form/components/form/form.types.d.ts +2 -2
  11. package/form/components/rich-text-editor/helpers/transform/transform.d.ts +1 -1
  12. package/form/components/rich-text-editor/hooks/use-positioned-element/use-positioned-element.d.ts +1 -1
  13. package/form/types/signup-form/signup-form.helpers.get-fields.d.ts +7 -2
  14. package/general/buttons/button-wrapper/button-wrapper.d.ts +1 -1
  15. package/general/link/link.d.ts +1 -1
  16. package/general/tooltip/tooltip.d.ts +2 -2
  17. package/helpers/intl.d.ts +2 -3
  18. package/helpers/pass-props-to-children.d.ts +1 -1
  19. package/hooks/use-auto-resize/use-auto-resize.d.ts +2 -2
  20. package/index.js +174 -152
  21. package/index.mjs +16023 -15574
  22. package/layout/page-layout/page-layout.d.ts +1 -1
  23. package/modals/components/modal/modal.d.ts +2 -2
  24. package/modals/components/overlay/overlay.d.ts +1 -1
  25. package/navigation/more-menu/more-menu.d.ts +2 -2
  26. package/navigation/tabs/tabs.d.ts +1 -1
  27. package/package.json +6 -6
  28. package/sections/edit-section/edit-section.d.ts +1 -1
  29. package/sections/full-width-section/full-width-section.d.ts +1 -1
  30. package/style.css +1 -1
  31. package/styles/base/_accessibility.scss +34 -32
  32. package/styles/base/_blockquotes.scss +50 -48
  33. package/styles/base/_fonts.scss +9 -7
  34. package/styles/base/_hr.scss +9 -7
  35. package/styles/base/_layout.scss +24 -22
  36. package/styles/base/_links.scss +18 -14
  37. package/styles/base/_lists.scss +40 -38
  38. package/styles/base/_mentions.scss +11 -9
  39. package/styles/base/_overlays.scss +51 -49
  40. package/styles/base/_svg.scss +4 -2
  41. package/styles/base/_table.scss +58 -56
  42. package/styles/base/_text.scss +110 -108
  43. package/styles/base/_titles.scss +56 -42
  44. package/styles/base/buttons/_button-wrapper.scss +27 -25
  45. package/styles/base/buttons/_buttons.scss +316 -314
  46. package/styles/base/form/_checkbox.scss +33 -31
  47. package/styles/base/form/_fields.scss +57 -55
  48. package/styles/base/form/_form.scss +18 -16
  49. package/styles/base/form/_labels.scss +8 -6
  50. package/styles/base/form/_radio.scss +20 -18
  51. package/styles/base/form/_search-button.scss +21 -19
  52. package/styles/index.scss +1 -1
  53. package/styles/reset/_reset.scss +117 -121
  54. package/styles/uclasses/uclasses.scss +1452 -1450
  55. package/text/helper-text-box/helper-text-box.d.ts +1 -1
  56. package/text/highlighted-text-box/highlighted-text-box.d.ts +1 -1
  57. package/text/icon-bulleted-list/icon-bulleted-list.d.ts +1 -1
  58. package/text/markdown-text/components/div/div.d.ts +1 -1
  59. package/text/markdown-text/components/empty-component/empty-component.d.ts +3 -1
  60. package/text/markdown-text/components/link/link.d.ts +1 -1
@@ -5,1903 +5,1905 @@ $font-size-s: 0.75rem;
5
5
  $font-size: 0.875rem;
6
6
  $font-size-md: 1rem;
7
7
 
8
- // Screen reader only utility class
9
- .u-sr-only {
10
- position: absolute;
11
- width: 1px;
12
- height: 1px;
13
- padding: 0;
14
- margin: -1px;
15
- overflow: hidden;
16
- clip: rect(0, 0, 0, 0);
17
- white-space: nowrap;
18
- border: 0;
19
- }
8
+ .v1styles {
9
+ // Screen reader only utility class
10
+ .u-sr-only {
11
+ position: absolute;
12
+ width: 1px;
13
+ height: 1px;
14
+ padding: 0;
15
+ margin: -1px;
16
+ overflow: hidden;
17
+ clip: rect(0, 0, 0, 0);
18
+ white-space: nowrap;
19
+ border: 0;
20
+ }
20
21
 
21
- // form elements
22
- .u-text-align-left {
23
- text-align: left;
24
- }
22
+ // form elements
23
+ .u-text-align-left {
24
+ text-align: left;
25
+ }
25
26
 
26
- .u-margin-bottom-half {
27
- margin-bottom: 0.5rem;
28
- }
27
+ .u-margin-bottom-half {
28
+ margin-bottom: 0.5rem;
29
+ }
29
30
 
30
- .u-margin-bottom-one {
31
- margin-bottom: 1rem;
32
- }
31
+ .u-margin-bottom-one {
32
+ margin-bottom: 1rem;
33
+ }
33
34
 
34
- .u-margin-bottom-one-point-five {
35
- margin-bottom: 1.5rem;
36
- }
35
+ .u-margin-bottom-one-point-five {
36
+ margin-bottom: 1.5rem;
37
+ }
37
38
 
38
- .u-display-block {
39
- display: block;
40
- }
39
+ .u-display-block {
40
+ display: block;
41
+ }
41
42
 
42
- .u-text-small {
43
- font-size: $font-size-s;
44
- line-height: $font-size-md;
43
+ .u-text-small {
44
+ font-size: $font-size-s;
45
+ line-height: $font-size-md;
45
46
 
46
- @include breakpoint('min-width', 'md') {
47
- font-size: $font-size;
47
+ @include breakpoint('min-width', 'md') {
48
+ font-size: $font-size;
49
+ }
48
50
  }
49
- }
50
51
 
51
- // common
52
- .u-margin-y-two-point-five {
53
- margin-top: 2.5rem;
54
- margin-bottom: 2.5rem;
55
- }
52
+ // common
53
+ .u-margin-y-two-point-five {
54
+ margin-top: 2.5rem;
55
+ margin-bottom: 2.5rem;
56
+ }
56
57
 
57
- .u-padding-two-point-five {
58
- padding: 2.5rem;
59
- }
58
+ .u-padding-two-point-five {
59
+ padding: 2.5rem;
60
+ }
60
61
 
61
- .u-p-0 {
62
- padding: 0;
63
- }
62
+ .u-p-0 {
63
+ padding: 0;
64
+ }
64
65
 
65
- .u-p-1 {
66
- padding: 0.25rem;
67
- }
66
+ .u-p-1 {
67
+ padding: 0.25rem;
68
+ }
68
69
 
69
- .u-p-2 {
70
- padding: 0.5rem;
71
- }
70
+ .u-p-2 {
71
+ padding: 0.5rem;
72
+ }
72
73
 
73
- .u-p-4 {
74
- padding: 1rem;
75
- }
74
+ .u-p-4 {
75
+ padding: 1rem;
76
+ }
76
77
 
77
- .u-p-6 {
78
- padding: 1.5rem;
79
- }
78
+ .u-p-6 {
79
+ padding: 1.5rem;
80
+ }
80
81
 
81
- .u-p-8 {
82
- padding: 2rem;
83
- }
82
+ .u-p-8 {
83
+ padding: 2rem;
84
+ }
84
85
 
85
- // typography
86
- .u-grey-text {
87
- color: get-map($default-colors, 'n600');
88
- }
86
+ // typography
87
+ .u-grey-text {
88
+ color: get-map($default-colors, 'n600');
89
+ }
89
90
 
90
- .u-white-text {
91
- color: get-map($default-colors, 'n50');
92
- }
91
+ .u-white-text {
92
+ color: get-map($default-colors, 'n50');
93
+ }
93
94
 
94
- .u-error-text {
95
- color: get-map($default-colors, 'error600');
96
- }
95
+ .u-error-text {
96
+ color: get-map($default-colors, 'error600');
97
+ }
97
98
 
98
- .u-primary-text {
99
- color: get-map($default-colors, 'b700');
100
- }
99
+ .u-primary-text {
100
+ color: get-map($default-colors, 'b700');
101
+ }
101
102
 
102
- .u-secondary-text {
103
- color: get-map($default-colors, 'b700');
104
- }
103
+ .u-secondary-text {
104
+ color: get-map($default-colors, 'b700');
105
+ }
105
106
 
106
- // Background
107
- .u-bg-n50 {
108
- background-color: get-map($default-colors, 'n50');
109
- }
107
+ // Background
108
+ .u-bg-n50 {
109
+ background-color: get-map($default-colors, 'n50');
110
+ }
110
111
 
111
- .u-bg-transparent {
112
- background-color: transparent;
113
- }
112
+ .u-bg-transparent {
113
+ background-color: transparent;
114
+ }
114
115
 
115
- // variables
116
- // flexbox
117
- .u-flex {
118
- display: flex;
119
- }
116
+ // variables
117
+ // flexbox
118
+ .u-flex {
119
+ display: flex;
120
+ }
120
121
 
121
- .u-inline-flex {
122
- display: inline-flex;
123
- }
122
+ .u-inline-flex {
123
+ display: inline-flex;
124
+ }
124
125
 
125
- .u-flex-wrap {
126
- flex-wrap: wrap;
127
- }
126
+ .u-flex-wrap {
127
+ flex-wrap: wrap;
128
+ }
128
129
 
129
- .u-flex-nowrap {
130
- flex-wrap: nowrap;
131
- }
130
+ .u-flex-nowrap {
131
+ flex-wrap: nowrap;
132
+ }
132
133
 
133
- .u-flex-col {
134
- flex-direction: column;
135
- }
134
+ .u-flex-col {
135
+ flex-direction: column;
136
+ }
136
137
 
137
- .u-flex-col-reverse {
138
- flex-direction: column-reverse;
139
- }
138
+ .u-flex-col-reverse {
139
+ flex-direction: column-reverse;
140
+ }
140
141
 
141
- .u-flex-row {
142
- flex-direction: row;
143
- }
142
+ .u-flex-row {
143
+ flex-direction: row;
144
+ }
144
145
 
145
- .u-flex-row-reverse {
146
- flex-direction: row-reverse;
147
- }
146
+ .u-flex-row-reverse {
147
+ flex-direction: row-reverse;
148
+ }
148
149
 
149
- .u-flex-center {
150
- justify-content: center;
151
- align-items: center;
152
- }
150
+ .u-flex-center {
151
+ justify-content: center;
152
+ align-items: center;
153
+ }
153
154
 
154
- .u-flex-grow {
155
- flex-grow: 1;
156
- }
155
+ .u-flex-grow {
156
+ flex-grow: 1;
157
+ }
157
158
 
158
- .u-flex-grow-0 {
159
- flex-grow: 0;
160
- }
159
+ .u-flex-grow-0 {
160
+ flex-grow: 0;
161
+ }
161
162
 
162
- .u-flex-shrink {
163
- flex-shrink: 1;
164
- }
163
+ .u-flex-shrink {
164
+ flex-shrink: 1;
165
+ }
165
166
 
166
- .u-flex-shrink-0 {
167
- flex-shrink: 0;
168
- }
167
+ .u-flex-shrink-0 {
168
+ flex-shrink: 0;
169
+ }
169
170
 
170
- .u-flex-basis-0 {
171
- flex-basis: 0;
172
- }
171
+ .u-flex-basis-0 {
172
+ flex-basis: 0;
173
+ }
173
174
 
174
- // justify-content
175
- .u-justify-start {
176
- justify-content: flex-start;
177
- }
175
+ // justify-content
176
+ .u-justify-start {
177
+ justify-content: flex-start;
178
+ }
178
179
 
179
- .u-justify-end {
180
- justify-content: flex-end;
181
- }
180
+ .u-justify-end {
181
+ justify-content: flex-end;
182
+ }
182
183
 
183
- .u-justify-center {
184
- justify-content: center;
185
- }
184
+ .u-justify-center {
185
+ justify-content: center;
186
+ }
186
187
 
187
- .u-justify-between {
188
- justify-content: space-between;
189
- }
188
+ .u-justify-between {
189
+ justify-content: space-between;
190
+ }
190
191
 
191
- // align-items
192
- .u-items-center {
193
- align-items: center;
194
- }
192
+ // align-items
193
+ .u-items-center {
194
+ align-items: center;
195
+ }
195
196
 
196
- .u-items-start {
197
- align-items: start;
198
- }
197
+ .u-items-start {
198
+ align-items: start;
199
+ }
199
200
 
200
- .u-items-end {
201
- align-items: end;
202
- }
201
+ .u-items-end {
202
+ align-items: end;
203
+ }
203
204
 
204
- .u-items-baseline {
205
- align-items: baseline;
206
- }
205
+ .u-items-baseline {
206
+ align-items: baseline;
207
+ }
207
208
 
208
- .u-items-stretch {
209
- align-items: stretch;
210
- }
209
+ .u-items-stretch {
210
+ align-items: stretch;
211
+ }
211
212
 
212
- // align-content
213
- .u-content-start {
214
- align-content: start;
215
- }
213
+ // align-content
214
+ .u-content-start {
215
+ align-content: start;
216
+ }
216
217
 
217
- .u-content-end {
218
- align-content: end;
219
- }
218
+ .u-content-end {
219
+ align-content: end;
220
+ }
220
221
 
221
- .u-content-center {
222
- align-content: center;
223
- }
222
+ .u-content-center {
223
+ align-content: center;
224
+ }
224
225
 
225
- .u-content-between {
226
- align-content: space-between;
227
- }
226
+ .u-content-between {
227
+ align-content: space-between;
228
+ }
228
229
 
229
- // align-self
230
- .u-self-center {
231
- align-self: center;
232
- }
230
+ // align-self
231
+ .u-self-center {
232
+ align-self: center;
233
+ }
233
234
 
234
- .u-self-start {
235
- align-self: start;
236
- }
235
+ .u-self-start {
236
+ align-self: start;
237
+ }
237
238
 
238
- .u-self-end {
239
- align-self: end;
240
- }
239
+ .u-self-end {
240
+ align-self: end;
241
+ }
241
242
 
242
- .u-self-stretch {
243
- align-self: stretch;
244
- }
243
+ .u-self-stretch {
244
+ align-self: stretch;
245
+ }
245
246
 
246
- .u-self-baseline {
247
- align-self: baseline;
248
- }
247
+ .u-self-baseline {
248
+ align-self: baseline;
249
+ }
249
250
 
250
- // display
251
- .u-block {
252
- display: block;
253
- }
251
+ // display
252
+ .u-block {
253
+ display: block;
254
+ }
254
255
 
255
- .u-inline-block {
256
- display: inline-block;
257
- }
256
+ .u-inline-block {
257
+ display: inline-block;
258
+ }
258
259
 
259
- .u-inline {
260
- display: inline;
261
- }
260
+ .u-inline {
261
+ display: inline;
262
+ }
262
263
 
263
- .u-contents {
264
- display: contents;
265
- }
264
+ .u-contents {
265
+ display: contents;
266
+ }
266
267
 
267
- .u-grid {
268
- display: grid;
269
- }
268
+ .u-grid {
269
+ display: grid;
270
+ }
270
271
 
271
- .u-inline-grid {
272
- display: inline-grid;
273
- }
272
+ .u-inline-grid {
273
+ display: inline-grid;
274
+ }
274
275
 
275
- .u-hidden {
276
- display: none;
277
- }
276
+ .u-hidden {
277
+ display: none;
278
+ }
278
279
 
279
- // margin
280
- .u-m-auto {
281
- margin: auto;
282
- }
280
+ // margin
281
+ .u-m-auto {
282
+ margin: auto;
283
+ }
283
284
 
284
- .u-m-0 {
285
- margin: 0;
286
- }
285
+ .u-m-0 {
286
+ margin: 0;
287
+ }
287
288
 
288
- .u-my-auto {
289
- margin-top: auto;
290
- margin-bottom: auto;
291
- }
289
+ .u-my-auto {
290
+ margin-top: auto;
291
+ margin-bottom: auto;
292
+ }
292
293
 
293
- .u-my-0 {
294
- margin-top: 0;
295
- margin-bottom: 0;
296
- }
294
+ .u-my-0 {
295
+ margin-top: 0;
296
+ margin-bottom: 0;
297
+ }
297
298
 
298
- .u-mx-auto {
299
- margin-left: auto;
300
- margin-right: auto;
301
- }
299
+ .u-mx-auto {
300
+ margin-left: auto;
301
+ margin-right: auto;
302
+ }
302
303
 
303
- .u-mx-0 {
304
- margin-left: 0;
305
- margin-right: 0;
306
- }
304
+ .u-mx-0 {
305
+ margin-left: 0;
306
+ margin-right: 0;
307
+ }
307
308
 
308
- .u-mt-auto {
309
- margin-top: auto;
310
- }
309
+ .u-mt-auto {
310
+ margin-top: auto;
311
+ }
311
312
 
312
- .u-mt-0 {
313
- margin-top: 0;
314
- }
313
+ .u-mt-0 {
314
+ margin-top: 0;
315
+ }
315
316
 
316
- .u-mt-1 {
317
- margin-top: 0.25rem; /* 4px */
318
- }
317
+ .u-mt-1 {
318
+ margin-top: 0.25rem; /* 4px */
319
+ }
319
320
 
320
- .u-mt-2 {
321
- margin-top: 0.5rem; /* 8px */
322
- }
321
+ .u-mt-2 {
322
+ margin-top: 0.5rem; /* 8px */
323
+ }
323
324
 
324
- .u-mt-3 {
325
- margin-top: 0.75rem; /* 12px */
326
- }
325
+ .u-mt-3 {
326
+ margin-top: 0.75rem; /* 12px */
327
+ }
327
328
 
328
- .u-mt-4 {
329
- margin-top: 1rem; /* 16px */
330
- }
329
+ .u-mt-4 {
330
+ margin-top: 1rem; /* 16px */
331
+ }
331
332
 
332
- .u-mt-5 {
333
- margin-top: 1.25rem; /* 20px */
334
- }
333
+ .u-mt-5 {
334
+ margin-top: 1.25rem; /* 20px */
335
+ }
335
336
 
336
- .u-mt-6 {
337
- margin-top: 1.5rem; /* 24px */
338
- }
337
+ .u-mt-6 {
338
+ margin-top: 1.5rem; /* 24px */
339
+ }
339
340
 
340
- .u-mt-8 {
341
- margin-top: 2rem; /* 32px */
342
- }
341
+ .u-mt-8 {
342
+ margin-top: 2rem; /* 32px */
343
+ }
343
344
 
344
- .u-mt-10 {
345
- margin-top: 2.5rem; /* 40px */
346
- }
345
+ .u-mt-10 {
346
+ margin-top: 2.5rem; /* 40px */
347
+ }
347
348
 
348
- .u-mt-12 {
349
- margin-top: 3rem; /* 64px */
350
- }
349
+ .u-mt-12 {
350
+ margin-top: 3rem; /* 64px */
351
+ }
351
352
 
352
- .u-mr-auto {
353
- margin-right: auto;
354
- }
353
+ .u-mr-auto {
354
+ margin-right: auto;
355
+ }
355
356
 
356
- .u-mr-0 {
357
- margin-right: 0;
358
- }
357
+ .u-mr-0 {
358
+ margin-right: 0;
359
+ }
359
360
 
360
- .u-mr-1 {
361
- margin-right: 0.25rem; /* 4px */
362
- }
361
+ .u-mr-1 {
362
+ margin-right: 0.25rem; /* 4px */
363
+ }
363
364
 
364
- .u-mr-2 {
365
- margin-right: 0.5rem; /* 8px */
366
- }
365
+ .u-mr-2 {
366
+ margin-right: 0.5rem; /* 8px */
367
+ }
367
368
 
368
- .u-mr-3 {
369
- margin-right: 0.75rem; /* 12px */
370
- }
369
+ .u-mr-3 {
370
+ margin-right: 0.75rem; /* 12px */
371
+ }
371
372
 
372
- .u-mr-4 {
373
- margin-right: 1rem; /* 16px */
374
- }
373
+ .u-mr-4 {
374
+ margin-right: 1rem; /* 16px */
375
+ }
375
376
 
376
- .u-mr-5 {
377
- margin-right: 1.25rem; /* 20px */
378
- }
377
+ .u-mr-5 {
378
+ margin-right: 1.25rem; /* 20px */
379
+ }
379
380
 
380
- .u-mr-6 {
381
- margin-right: 1.5rem; /* 24px */
382
- }
381
+ .u-mr-6 {
382
+ margin-right: 1.5rem; /* 24px */
383
+ }
383
384
 
384
- .u-mr-8 {
385
- margin-right: 2rem; /* 32px */
386
- }
385
+ .u-mr-8 {
386
+ margin-right: 2rem; /* 32px */
387
+ }
387
388
 
388
- .u-mr-10 {
389
- margin-right: 2.5rem; /* 40px */
390
- }
389
+ .u-mr-10 {
390
+ margin-right: 2.5rem; /* 40px */
391
+ }
391
392
 
392
- .u-mb-auto {
393
- margin-bottom: auto;
394
- }
393
+ .u-mb-auto {
394
+ margin-bottom: auto;
395
+ }
395
396
 
396
- .u-mb-0 {
397
- margin-bottom: 0;
398
- }
397
+ .u-mb-0 {
398
+ margin-bottom: 0;
399
+ }
399
400
 
400
- .u-mb-1 {
401
- margin-bottom: 0.25rem; /* 4px */
402
- }
401
+ .u-mb-1 {
402
+ margin-bottom: 0.25rem; /* 4px */
403
+ }
403
404
 
404
- .u-mb-2 {
405
- margin-bottom: 0.5rem; /* 8px */
406
- }
405
+ .u-mb-2 {
406
+ margin-bottom: 0.5rem; /* 8px */
407
+ }
407
408
 
408
- .u-mb-3 {
409
- margin-bottom: 0.75rem; /* 12px */
410
- }
409
+ .u-mb-3 {
410
+ margin-bottom: 0.75rem; /* 12px */
411
+ }
411
412
 
412
- .u-mb-4 {
413
- margin-bottom: 1rem; /* 16px */
414
- }
413
+ .u-mb-4 {
414
+ margin-bottom: 1rem; /* 16px */
415
+ }
415
416
 
416
- .u-mb-5 {
417
- margin-bottom: 1.25rem; /* 20px */
418
- }
417
+ .u-mb-5 {
418
+ margin-bottom: 1.25rem; /* 20px */
419
+ }
419
420
 
420
- .u-mb-6 {
421
- margin-bottom: 1.5rem; /* 24px */
422
- }
421
+ .u-mb-6 {
422
+ margin-bottom: 1.5rem; /* 24px */
423
+ }
423
424
 
424
- .u-mb-8 {
425
- margin-bottom: 2rem; /* 32px */
426
- }
425
+ .u-mb-8 {
426
+ margin-bottom: 2rem; /* 32px */
427
+ }
427
428
 
428
- .u-mb-10 {
429
- margin-bottom: 2.5rem; /* 40px */
430
- }
429
+ .u-mb-10 {
430
+ margin-bottom: 2.5rem; /* 40px */
431
+ }
431
432
 
432
- .u-ml-auto {
433
- margin-left: auto;
434
- }
433
+ .u-ml-auto {
434
+ margin-left: auto;
435
+ }
435
436
 
436
- .u-ml-0 {
437
- margin-left: 0;
438
- }
437
+ .u-ml-0 {
438
+ margin-left: 0;
439
+ }
439
440
 
440
- .u-ml-1 {
441
- margin-left: 0.25rem; /* 4px */
442
- }
441
+ .u-ml-1 {
442
+ margin-left: 0.25rem; /* 4px */
443
+ }
443
444
 
444
- .u-ml-2 {
445
- margin-left: 0.5rem; /* 8px */
446
- }
445
+ .u-ml-2 {
446
+ margin-left: 0.5rem; /* 8px */
447
+ }
447
448
 
448
- .u-ml-3 {
449
- margin-left: 0.75rem; /* 12px */
450
- }
449
+ .u-ml-3 {
450
+ margin-left: 0.75rem; /* 12px */
451
+ }
451
452
 
452
- .u-ml-4 {
453
- margin-left: 1rem; /* 16px */
454
- }
453
+ .u-ml-4 {
454
+ margin-left: 1rem; /* 16px */
455
+ }
455
456
 
456
- .u-ml-5 {
457
- margin-left: 1.25rem; /* 20px */
458
- }
457
+ .u-ml-5 {
458
+ margin-left: 1.25rem; /* 20px */
459
+ }
459
460
 
460
- .u-ml-6 {
461
- margin-left: 1.5rem; /* 24px */
462
- }
461
+ .u-ml-6 {
462
+ margin-left: 1.5rem; /* 24px */
463
+ }
463
464
 
464
- .u-ml-8 {
465
- margin-left: 2rem; /* 32px */
466
- }
465
+ .u-ml-8 {
466
+ margin-left: 2rem; /* 32px */
467
+ }
467
468
 
468
- .u-ml-10 {
469
- margin-left: 2.5rem; /* 40px */
470
- }
469
+ .u-ml-10 {
470
+ margin-left: 2.5rem; /* 40px */
471
+ }
471
472
 
472
- .u-ml-minus-1 {
473
- margin-left: -0.25rem; /* 4px */
474
- }
473
+ .u-ml-minus-1 {
474
+ margin-left: -0.25rem; /* 4px */
475
+ }
475
476
 
476
- .u-ml-minus-2 {
477
- margin-left: -0.5rem; /* 8px */
478
- }
477
+ .u-ml-minus-2 {
478
+ margin-left: -0.5rem; /* 8px */
479
+ }
479
480
 
480
- // padding
481
- .u-py-auto {
482
- padding-top: auto;
483
- padding-bottom: auto;
484
- }
481
+ // padding
482
+ .u-py-auto {
483
+ padding-top: auto;
484
+ padding-bottom: auto;
485
+ }
485
486
 
486
- .u-py-0 {
487
- padding-top: 0;
488
- padding-bottom: 0;
489
- }
487
+ .u-py-0 {
488
+ padding-top: 0;
489
+ padding-bottom: 0;
490
+ }
490
491
 
491
- .u-py-1 {
492
- padding-top: 0.25rem; /* 4px */
493
- padding-bottom: 0.25rem; /* 4px */
494
- }
492
+ .u-py-1 {
493
+ padding-top: 0.25rem; /* 4px */
494
+ padding-bottom: 0.25rem; /* 4px */
495
+ }
495
496
 
496
- .u-py-2 {
497
- padding-top: 0.5rem; /* 8px */
498
- padding-bottom: 0.5rem; /* 8px */
499
- }
497
+ .u-py-2 {
498
+ padding-top: 0.5rem; /* 8px */
499
+ padding-bottom: 0.5rem; /* 8px */
500
+ }
500
501
 
501
- .u-py-3 {
502
- padding-top: 0.75rem; /* 12px */
503
- padding-bottom: 0.75rem; /* 12px */
504
- }
502
+ .u-py-3 {
503
+ padding-top: 0.75rem; /* 12px */
504
+ padding-bottom: 0.75rem; /* 12px */
505
+ }
505
506
 
506
- .u-py-4 {
507
- padding-top: 1rem; /* 16px */
508
- padding-bottom: 1rem; /* 16px */
509
- }
507
+ .u-py-4 {
508
+ padding-top: 1rem; /* 16px */
509
+ padding-bottom: 1rem; /* 16px */
510
+ }
510
511
 
511
- .u-py-10 {
512
- padding-top: 2.5rem; /* 40px */
513
- padding-bottom: 2.5rem; /* 40px */
514
- }
512
+ .u-py-10 {
513
+ padding-top: 2.5rem; /* 40px */
514
+ padding-bottom: 2.5rem; /* 40px */
515
+ }
515
516
 
516
- .u-py-12 {
517
- padding-top: 3rem; /* 48px */
518
- padding-bottom: 3rem; /* 48px */
519
- }
517
+ .u-py-12 {
518
+ padding-top: 3rem; /* 48px */
519
+ padding-bottom: 3rem; /* 48px */
520
+ }
520
521
 
521
- .u-px-0 {
522
- padding-left: 0;
523
- padding-right: 0;
524
- }
522
+ .u-px-0 {
523
+ padding-left: 0;
524
+ padding-right: 0;
525
+ }
525
526
 
526
- .u-px-1 {
527
- padding-left: 0.25rem; /* 4px */
528
- padding-right: 0.25rem; /* 4px */
529
- }
527
+ .u-px-1 {
528
+ padding-left: 0.25rem; /* 4px */
529
+ padding-right: 0.25rem; /* 4px */
530
+ }
530
531
 
531
- .u-px-2 {
532
- padding-left: 0.5rem; /* 8px */
533
- padding-right: 0.5rem; /* 8px */
534
- }
532
+ .u-px-2 {
533
+ padding-left: 0.5rem; /* 8px */
534
+ padding-right: 0.5rem; /* 8px */
535
+ }
535
536
 
536
- .u-px-3 {
537
- padding-left: 0.75rem; /* 12px */
538
- padding-right: 0.75rem; /* 12px */
539
- }
537
+ .u-px-3 {
538
+ padding-left: 0.75rem; /* 12px */
539
+ padding-right: 0.75rem; /* 12px */
540
+ }
540
541
 
541
- .u-px-4 {
542
- padding-left: 1rem; /* 16px */
543
- padding-right: 1rem; /* 16px */
544
- }
542
+ .u-px-4 {
543
+ padding-left: 1rem; /* 16px */
544
+ padding-right: 1rem; /* 16px */
545
+ }
545
546
 
546
- .u-pt-0 {
547
- padding-top: 0;
548
- }
547
+ .u-pt-0 {
548
+ padding-top: 0;
549
+ }
549
550
 
550
- .u-pt-12 {
551
- padding-top: 3rem; /* 48px */
552
- }
551
+ .u-pt-12 {
552
+ padding-top: 3rem; /* 48px */
553
+ }
553
554
 
554
- .u-pr-0 {
555
- padding-right: 0;
556
- }
555
+ .u-pr-0 {
556
+ padding-right: 0;
557
+ }
557
558
 
558
- .u-pb-0 {
559
- padding-bottom: 0;
560
- }
559
+ .u-pb-0 {
560
+ padding-bottom: 0;
561
+ }
561
562
 
562
- .u-pb-8 {
563
- padding-bottom: 2rem; /* 32px */
564
- }
563
+ .u-pb-8 {
564
+ padding-bottom: 2rem; /* 32px */
565
+ }
565
566
 
566
- .u-pl-0 {
567
- padding-left: 0;
568
- }
567
+ .u-pl-0 {
568
+ padding-left: 0;
569
+ }
569
570
 
570
- // vertical-align
571
- .u-align-baseline {
572
- vertical-align: baseline;
573
- }
571
+ // vertical-align
572
+ .u-align-baseline {
573
+ vertical-align: baseline;
574
+ }
574
575
 
575
- .u-align-sub {
576
- vertical-align: sub;
577
- }
576
+ .u-align-sub {
577
+ vertical-align: sub;
578
+ }
578
579
 
579
- .u-align-super {
580
- vertical-align: super;
581
- }
580
+ .u-align-super {
581
+ vertical-align: super;
582
+ }
582
583
 
583
- .u-align-text-top {
584
- vertical-align: text-top;
585
- }
584
+ .u-align-text-top {
585
+ vertical-align: text-top;
586
+ }
586
587
 
587
- .u-align-text-bottom {
588
- vertical-align: text-bottom;
589
- }
588
+ .u-align-text-bottom {
589
+ vertical-align: text-bottom;
590
+ }
590
591
 
591
- .u-align-top {
592
- vertical-align: top;
593
- }
592
+ .u-align-top {
593
+ vertical-align: top;
594
+ }
594
595
 
595
- .u-align-middle {
596
- vertical-align: middle;
597
- }
596
+ .u-align-middle {
597
+ vertical-align: middle;
598
+ }
598
599
 
599
- .u-align-bottom {
600
- vertical-align: bottom;
601
- }
600
+ .u-align-bottom {
601
+ vertical-align: bottom;
602
+ }
602
603
 
603
- // typography
604
- .u-truncate,
605
- .u-text-truncate {
606
- overflow: hidden;
607
- text-overflow: ellipsis;
608
- white-space: nowrap;
609
- }
604
+ // typography
605
+ .u-truncate,
606
+ .u-text-truncate {
607
+ overflow: hidden;
608
+ text-overflow: ellipsis;
609
+ white-space: nowrap;
610
+ }
610
611
 
611
- .u-text-replace {
612
- overflow: hidden;
613
- color: transparent;
614
- text-indent: 100%;
615
- white-space: nowrap;
616
- }
612
+ .u-text-replace {
613
+ overflow: hidden;
614
+ color: transparent;
615
+ text-indent: 100%;
616
+ white-space: nowrap;
617
+ }
617
618
 
618
- .u-break-word {
619
- overflow-wrap: break-word;
620
- min-width: 0;
621
- }
619
+ .u-break-word {
620
+ overflow-wrap: break-word;
621
+ min-width: 0;
622
+ }
622
623
 
623
- // text-transform
624
- .u-uppercase {
625
- text-transform: uppercase;
626
- }
624
+ // text-transform
625
+ .u-uppercase {
626
+ text-transform: uppercase;
627
+ }
627
628
 
628
- .u-capitalize {
629
- text-transform: capitalize;
630
- }
629
+ .u-capitalize {
630
+ text-transform: capitalize;
631
+ }
631
632
 
632
- // font-size
633
- .u-text-xs {
634
- font-size: 0.75rem;
635
- line-height: 1rem;
636
- }
633
+ // font-size
634
+ .u-text-xs {
635
+ font-size: 0.75rem;
636
+ line-height: 1rem;
637
+ }
637
638
 
638
- .u-text-sm {
639
- font-size: 0.875rem;
640
- line-height: 1.25rem;
641
- }
639
+ .u-text-sm {
640
+ font-size: 0.875rem;
641
+ line-height: 1.25rem;
642
+ }
642
643
 
643
- .u-text-base {
644
- font-size: 1rem;
645
- line-height: 1.5rem;
646
- }
644
+ .u-text-base {
645
+ font-size: 1rem;
646
+ line-height: 1.5rem;
647
+ }
647
648
 
648
- .u-text-lg {
649
- font-size: 1.125rem;
650
- line-height: 1.75rem;
651
- }
649
+ .u-text-lg {
650
+ font-size: 1.125rem;
651
+ line-height: 1.75rem;
652
+ }
652
653
 
653
- .u-text-xl {
654
- font-size: 1.25rem;
655
- line-height: 1.75rem;
656
- }
654
+ .u-text-xl {
655
+ font-size: 1.25rem;
656
+ line-height: 1.75rem;
657
+ }
657
658
 
658
- .u-text-2xl {
659
- font-size: 1.5rem;
660
- line-height: 2rem;
661
- }
659
+ .u-text-2xl {
660
+ font-size: 1.5rem;
661
+ line-height: 2rem;
662
+ }
662
663
 
663
- // text-align
664
- .u-text-center {
665
- text-align: center;
666
- }
664
+ // text-align
665
+ .u-text-center {
666
+ text-align: center;
667
+ }
667
668
 
668
- .u-text-left {
669
- text-align: left;
670
- }
669
+ .u-text-left {
670
+ text-align: left;
671
+ }
671
672
 
672
- .u-text-right {
673
- text-align: right;
674
- }
673
+ .u-text-right {
674
+ text-align: right;
675
+ }
675
676
 
676
- .u-text-justify {
677
- text-align: justify;
678
- }
677
+ .u-text-justify {
678
+ text-align: justify;
679
+ }
679
680
 
680
- .u-text-start {
681
- text-align: start;
682
- }
681
+ .u-text-start {
682
+ text-align: start;
683
+ }
683
684
 
684
- .u-text-end {
685
- text-align: end;
686
- }
685
+ .u-text-end {
686
+ text-align: end;
687
+ }
687
688
 
688
- // text-decoration
689
- .u-line-through {
690
- text-decoration: line-through;
691
- }
689
+ // text-decoration
690
+ .u-line-through {
691
+ text-decoration: line-through;
692
+ }
692
693
 
693
- .u-underline {
694
- text-decoration: underline;
695
- }
694
+ .u-underline {
695
+ text-decoration: underline;
696
+ }
696
697
 
697
- .u-text-decoration-none {
698
- text-decoration: none;
699
- }
698
+ .u-text-decoration-none {
699
+ text-decoration: none;
700
+ }
700
701
 
701
- // cursor
702
- .u-cursor-pointer {
703
- cursor: pointer;
704
- }
702
+ // cursor
703
+ .u-cursor-pointer {
704
+ cursor: pointer;
705
+ }
705
706
 
706
- .u-cursor-default {
707
- cursor: default;
708
- }
707
+ .u-cursor-default {
708
+ cursor: default;
709
+ }
709
710
 
710
- // pointer-events
711
- .u-pointer-events-auto {
712
- pointer-events: auto;
713
- }
711
+ // pointer-events
712
+ .u-pointer-events-auto {
713
+ pointer-events: auto;
714
+ }
714
715
 
715
- .u-pointer-events-none {
716
- pointer-events: none;
717
- }
716
+ .u-pointer-events-none {
717
+ pointer-events: none;
718
+ }
718
719
 
719
- // min-height
720
- .u-min-h-0 {
721
- min-height: 0;
722
- }
720
+ // min-height
721
+ .u-min-h-0 {
722
+ min-height: 0;
723
+ }
723
724
 
724
- .u-min-h-1 {
725
- min-height: 0.25rem; /* 4px */
726
- }
725
+ .u-min-h-1 {
726
+ min-height: 0.25rem; /* 4px */
727
+ }
727
728
 
728
- .u-min-h-2 {
729
- min-height: 0.5rem; /* 8px */
730
- }
729
+ .u-min-h-2 {
730
+ min-height: 0.5rem; /* 8px */
731
+ }
731
732
 
732
- .u-min-h-3 {
733
- min-height: 0.75rem; /* 12px */
734
- }
733
+ .u-min-h-3 {
734
+ min-height: 0.75rem; /* 12px */
735
+ }
735
736
 
736
- .u-min-h-4 {
737
- min-height: 1rem; /* 16px */
738
- }
737
+ .u-min-h-4 {
738
+ min-height: 1rem; /* 16px */
739
+ }
739
740
 
740
- .u-min-h-5 {
741
- min-height: 1.25rem; /* 20px */
742
- }
741
+ .u-min-h-5 {
742
+ min-height: 1.25rem; /* 20px */
743
+ }
743
744
 
744
- .u-min-h-6 {
745
- min-height: 1.5rem; /* 24px */
746
- }
745
+ .u-min-h-6 {
746
+ min-height: 1.5rem; /* 24px */
747
+ }
747
748
 
748
- .u-min-h-8 {
749
- min-height: 2rem; /* 32px */
750
- }
749
+ .u-min-h-8 {
750
+ min-height: 2rem; /* 32px */
751
+ }
751
752
 
752
- .u-min-h-10 {
753
- min-height: 2.5rem; /* 40px */
754
- }
753
+ .u-min-h-10 {
754
+ min-height: 2.5rem; /* 40px */
755
+ }
755
756
 
756
- .u-min-h-full {
757
- min-height: 100%;
758
- }
757
+ .u-min-h-full {
758
+ min-height: 100%;
759
+ }
759
760
 
760
- .u-min-h-screen {
761
- min-height: 100vh;
762
- }
761
+ .u-min-h-screen {
762
+ min-height: 100vh;
763
+ }
763
764
 
764
- // max-height
765
- .u-max-h-full {
766
- max-height: 100%;
767
- }
765
+ // max-height
766
+ .u-max-h-full {
767
+ max-height: 100%;
768
+ }
768
769
 
769
- .u-max-h-screen {
770
- max-height: 100vh;
771
- }
770
+ .u-max-h-screen {
771
+ max-height: 100vh;
772
+ }
772
773
 
773
- // position
774
- .u-relative {
775
- position: relative;
776
- }
774
+ // position
775
+ .u-relative {
776
+ position: relative;
777
+ }
777
778
 
778
- .u-absolute {
779
- position: absolute;
780
- }
779
+ .u-absolute {
780
+ position: absolute;
781
+ }
781
782
 
782
- .u-fixed {
783
- position: fixed;
784
- }
783
+ .u-fixed {
784
+ position: fixed;
785
+ }
785
786
 
786
- .u-sticky {
787
- position: sticky;
788
- }
787
+ .u-sticky {
788
+ position: sticky;
789
+ }
789
790
 
790
- .u-static {
791
- position: static;
792
- }
791
+ .u-static {
792
+ position: static;
793
+ }
793
794
 
794
- .u-inset-0 {
795
- inset: 0;
796
- }
795
+ .u-inset-0 {
796
+ inset: 0;
797
+ }
797
798
 
798
- // z-index
799
- .u-z-0 {
800
- z-index: 0;
801
- }
799
+ // z-index
800
+ .u-z-0 {
801
+ z-index: 0;
802
+ }
802
803
 
803
- .u-z-1 {
804
- z-index: 1;
805
- }
804
+ .u-z-1 {
805
+ z-index: 1;
806
+ }
806
807
 
807
- .u-z-2 {
808
- z-index: 2;
809
- }
808
+ .u-z-2 {
809
+ z-index: 2;
810
+ }
810
811
 
811
- .u-z-3 {
812
- z-index: 3;
813
- }
812
+ .u-z-3 {
813
+ z-index: 3;
814
+ }
814
815
 
815
- .u-z-50 {
816
- z-index: 50;
817
- }
816
+ .u-z-50 {
817
+ z-index: 50;
818
+ }
818
819
 
819
- // overflow
820
- .u-overflow-visible {
821
- overflow: visible;
822
- }
820
+ // overflow
821
+ .u-overflow-visible {
822
+ overflow: visible;
823
+ }
823
824
 
824
- .u-overflow-hidden {
825
- overflow: hidden;
826
- }
825
+ .u-overflow-hidden {
826
+ overflow: hidden;
827
+ }
827
828
 
828
- .u-overflow-x-hidden {
829
- overflow-x: hidden;
830
- }
829
+ .u-overflow-x-hidden {
830
+ overflow-x: hidden;
831
+ }
831
832
 
832
- .u-overflow-y-hidden {
833
- overflow-y: hidden;
834
- }
833
+ .u-overflow-y-hidden {
834
+ overflow-y: hidden;
835
+ }
835
836
 
836
- .u-overflow-x-auto {
837
- overflow-x: auto;
838
- }
837
+ .u-overflow-x-auto {
838
+ overflow-x: auto;
839
+ }
839
840
 
840
- .u-overflow-y-auto {
841
- overflow-y: auto;
842
- }
841
+ .u-overflow-y-auto {
842
+ overflow-y: auto;
843
+ }
843
844
 
844
- .u-overflow-clip {
845
- overflow: clip;
846
- }
845
+ .u-overflow-clip {
846
+ overflow: clip;
847
+ }
847
848
 
848
- .u-overflow-x-clip {
849
- overflow-x: clip;
850
- }
849
+ .u-overflow-x-clip {
850
+ overflow-x: clip;
851
+ }
851
852
 
852
- .u-overflow-y-clip {
853
- overflow-y: clip;
854
- }
853
+ .u-overflow-y-clip {
854
+ overflow-y: clip;
855
+ }
855
856
 
856
- .u-overflow-auto {
857
- overflow: auto;
858
- }
857
+ .u-overflow-auto {
858
+ overflow: auto;
859
+ }
859
860
 
860
- .u-momentum-scrolling {
861
- -webkit-overflow-scrolling: touch;
862
- }
861
+ .u-momentum-scrolling {
862
+ -webkit-overflow-scrolling: touch;
863
+ }
863
864
 
864
- // overscroll-behavior
865
- .u-overscroll-contain {
866
- overscroll-behavior: contain;
867
- }
865
+ // overscroll-behavior
866
+ .u-overscroll-contain {
867
+ overscroll-behavior: contain;
868
+ }
868
869
 
869
- // scroll behavior
870
- .u-scroll-smooth {
871
- scroll-behavior: smooth;
872
- }
870
+ // scroll behavior
871
+ .u-scroll-smooth {
872
+ scroll-behavior: smooth;
873
+ }
873
874
 
874
- // opacity
875
- .u-opacity-0 {
876
- opacity: 0;
877
- }
875
+ // opacity
876
+ .u-opacity-0 {
877
+ opacity: 0;
878
+ }
878
879
 
879
- .u-opacity-25 {
880
- opacity: 0.25;
881
- }
880
+ .u-opacity-25 {
881
+ opacity: 0.25;
882
+ }
882
883
 
883
- .u-opacity-50 {
884
- opacity: 0.5;
885
- }
884
+ .u-opacity-50 {
885
+ opacity: 0.5;
886
+ }
886
887
 
887
- .u-opacity-75 {
888
- opacity: 0.75;
889
- }
888
+ .u-opacity-75 {
889
+ opacity: 0.75;
890
+ }
890
891
 
891
- .u-opacity-100 {
892
- opacity: 1;
893
- }
892
+ .u-opacity-100 {
893
+ opacity: 1;
894
+ }
894
895
 
895
- // border
896
+ // border
896
897
 
897
- .u-border {
898
- border-width: 1px;
899
- }
898
+ .u-border {
899
+ border-width: 1px;
900
+ }
900
901
 
901
- .u-border-dotted {
902
- border-style: dotted;
903
- }
902
+ .u-border-dotted {
903
+ border-style: dotted;
904
+ }
904
905
 
905
- .u-border-dashed {
906
- border-style: dashed;
907
- }
906
+ .u-border-dashed {
907
+ border-style: dashed;
908
+ }
908
909
 
909
- // object-fit
910
- .u-object-contain {
911
- object-fit: contain;
912
- }
910
+ // object-fit
911
+ .u-object-contain {
912
+ object-fit: contain;
913
+ }
913
914
 
914
- .u-object-cover {
915
- object-fit: cover;
916
- }
915
+ .u-object-cover {
916
+ object-fit: cover;
917
+ }
917
918
 
918
- // transform
919
- .u-rotate-90 {
920
- rotate: 90deg;
921
- }
919
+ // transform
920
+ .u-rotate-90 {
921
+ rotate: 90deg;
922
+ }
922
923
 
923
- .u-rotate-180 {
924
- rotate: 180deg;
925
- }
924
+ .u-rotate-180 {
925
+ rotate: 180deg;
926
+ }
926
927
 
927
- .u-rotate-270 {
928
- rotate: 270deg;
929
- }
928
+ .u-rotate-270 {
929
+ rotate: 270deg;
930
+ }
930
931
 
931
- // transform-origin
932
- .u-origin-center {
933
- transform-origin: center;
934
- }
932
+ // transform-origin
933
+ .u-origin-center {
934
+ transform-origin: center;
935
+ }
935
936
 
936
- .u-origin-top {
937
- transform-origin: center top;
938
- }
937
+ .u-origin-top {
938
+ transform-origin: center top;
939
+ }
939
940
 
940
- .u-origin-right {
941
- transform-origin: right center;
942
- }
941
+ .u-origin-right {
942
+ transform-origin: right center;
943
+ }
943
944
 
944
- .u-origin-bottom {
945
- transform-origin: center bottom;
946
- }
945
+ .u-origin-bottom {
946
+ transform-origin: center bottom;
947
+ }
947
948
 
948
- .u-origin-left {
949
- transform-origin: left center;
950
- }
949
+ .u-origin-left {
950
+ transform-origin: left center;
951
+ }
951
952
 
952
- .u-origin-top-left {
953
- transform-origin: left top;
954
- }
953
+ .u-origin-top-left {
954
+ transform-origin: left top;
955
+ }
955
956
 
956
- .u-origin-top-right {
957
- transform-origin: right top;
958
- }
957
+ .u-origin-top-right {
958
+ transform-origin: right top;
959
+ }
959
960
 
960
- .u-origin-bottom-left {
961
- transform-origin: left bottom;
962
- }
961
+ .u-origin-bottom-left {
962
+ transform-origin: left bottom;
963
+ }
963
964
 
964
- .u-origin-bottom-right {
965
- transform-origin: right bottom;
966
- }
965
+ .u-origin-bottom-right {
966
+ transform-origin: right bottom;
967
+ }
967
968
 
968
- // visibility
969
- .u-visible {
970
- visibility: visible;
971
- }
969
+ // visibility
970
+ .u-visible {
971
+ visibility: visible;
972
+ }
972
973
 
973
- .u-invisible {
974
- visibility: hidden;
975
- }
974
+ .u-invisible {
975
+ visibility: hidden;
976
+ }
976
977
 
977
- // width
978
- .u-w-0 {
979
- width: 0;
980
- }
978
+ // width
979
+ .u-w-0 {
980
+ width: 0;
981
+ }
981
982
 
982
- .u-w-px {
983
- width: 1px;
984
- }
983
+ .u-w-px {
984
+ width: 1px;
985
+ }
985
986
 
986
- .u-w-1 {
987
- width: 0.25rem; /* 4px */
988
- }
987
+ .u-w-1 {
988
+ width: 0.25rem; /* 4px */
989
+ }
989
990
 
990
- .u-w-2 {
991
- width: 0.5rem; /* 8px */
992
- }
991
+ .u-w-2 {
992
+ width: 0.5rem; /* 8px */
993
+ }
993
994
 
994
- .u-w-3 {
995
- width: 0.75rem; /* 12px */
996
- }
995
+ .u-w-3 {
996
+ width: 0.75rem; /* 12px */
997
+ }
997
998
 
998
- .u-w-4 {
999
- width: 1rem; /* 16px */
1000
- }
999
+ .u-w-4 {
1000
+ width: 1rem; /* 16px */
1001
+ }
1001
1002
 
1002
- .u-w-5 {
1003
- width: 1.25rem; /* 20px */
1004
- }
1003
+ .u-w-5 {
1004
+ width: 1.25rem; /* 20px */
1005
+ }
1005
1006
 
1006
- .u-w-6 {
1007
- width: 1.5rem; /* 24px */
1008
- }
1007
+ .u-w-6 {
1008
+ width: 1.5rem; /* 24px */
1009
+ }
1009
1010
 
1010
- .u-w-8 {
1011
- width: 2rem; /* 32px */
1012
- }
1011
+ .u-w-8 {
1012
+ width: 2rem; /* 32px */
1013
+ }
1013
1014
 
1014
- .u-w-10 {
1015
- width: 2.5rem; /* 40px */
1016
- }
1015
+ .u-w-10 {
1016
+ width: 2.5rem; /* 40px */
1017
+ }
1017
1018
 
1018
- .u-w-12 {
1019
- width: 3rem; /* 48px */
1020
- }
1019
+ .u-w-12 {
1020
+ width: 3rem; /* 48px */
1021
+ }
1021
1022
 
1022
- .u-w-16 {
1023
- width: 4rem; /* 64px */
1024
- }
1023
+ .u-w-16 {
1024
+ width: 4rem; /* 64px */
1025
+ }
1025
1026
 
1026
- .u-w-20 {
1027
- width: 5rem; /* 80px */
1028
- }
1027
+ .u-w-20 {
1028
+ width: 5rem; /* 80px */
1029
+ }
1029
1030
 
1030
- .u-w-24 {
1031
- width: 6rem; /* 96px */
1032
- }
1031
+ .u-w-24 {
1032
+ width: 6rem; /* 96px */
1033
+ }
1033
1034
 
1034
- .u-w-32 {
1035
- width: 8rem; /* 128px */
1036
- }
1035
+ .u-w-32 {
1036
+ width: 8rem; /* 128px */
1037
+ }
1037
1038
 
1038
- .u-w-40 {
1039
- width: 10rem; /* 160px */
1040
- }
1039
+ .u-w-40 {
1040
+ width: 10rem; /* 160px */
1041
+ }
1041
1042
 
1042
- .u-w-48 {
1043
- width: 12rem; /* 192px */
1044
- }
1043
+ .u-w-48 {
1044
+ width: 12rem; /* 192px */
1045
+ }
1045
1046
 
1046
- .u-w-auto {
1047
- width: auto;
1048
- }
1047
+ .u-w-auto {
1048
+ width: auto;
1049
+ }
1049
1050
 
1050
- .u-w-full {
1051
- width: 100%;
1052
- }
1051
+ .u-w-full {
1052
+ width: 100%;
1053
+ }
1053
1054
 
1054
- // height
1055
- .u-h-0 {
1056
- height: 0;
1057
- }
1055
+ // height
1056
+ .u-h-0 {
1057
+ height: 0;
1058
+ }
1058
1059
 
1059
- .u-h-px {
1060
- height: 1px;
1061
- }
1060
+ .u-h-px {
1061
+ height: 1px;
1062
+ }
1062
1063
 
1063
- .u-h-1 {
1064
- height: 0.25rem; /* 4px */
1065
- }
1064
+ .u-h-1 {
1065
+ height: 0.25rem; /* 4px */
1066
+ }
1066
1067
 
1067
- .u-h-2 {
1068
- height: 0.5rem; /* 8px */
1069
- }
1068
+ .u-h-2 {
1069
+ height: 0.5rem; /* 8px */
1070
+ }
1070
1071
 
1071
- .u-h-3 {
1072
- height: 0.75rem; /* 12px */
1073
- }
1072
+ .u-h-3 {
1073
+ height: 0.75rem; /* 12px */
1074
+ }
1074
1075
 
1075
- .u-h-4 {
1076
- height: 1rem; /* 16px */
1077
- }
1076
+ .u-h-4 {
1077
+ height: 1rem; /* 16px */
1078
+ }
1078
1079
 
1079
- .u-h-5 {
1080
- height: 1.25rem; /* 20px */
1081
- }
1080
+ .u-h-5 {
1081
+ height: 1.25rem; /* 20px */
1082
+ }
1082
1083
 
1083
- .u-h-6 {
1084
- height: 1.5rem; /* 24px */
1085
- }
1084
+ .u-h-6 {
1085
+ height: 1.5rem; /* 24px */
1086
+ }
1086
1087
 
1087
- .u-h-8 {
1088
- height: 2rem; /* 32px */
1089
- }
1088
+ .u-h-8 {
1089
+ height: 2rem; /* 32px */
1090
+ }
1090
1091
 
1091
- .u-h-10 {
1092
- height: 2.5rem; /* 40px */
1093
- }
1092
+ .u-h-10 {
1093
+ height: 2.5rem; /* 40px */
1094
+ }
1094
1095
 
1095
- .u-h-12 {
1096
- height: 3rem; /* 48px */
1097
- }
1096
+ .u-h-12 {
1097
+ height: 3rem; /* 48px */
1098
+ }
1098
1099
 
1099
- .u-h-16 {
1100
- height: 4rem; /* 64px */
1101
- }
1100
+ .u-h-16 {
1101
+ height: 4rem; /* 64px */
1102
+ }
1102
1103
 
1103
- .u-h-20 {
1104
- height: 5rem; /* 80px */
1105
- }
1104
+ .u-h-20 {
1105
+ height: 5rem; /* 80px */
1106
+ }
1106
1107
 
1107
- .u-h-24 {
1108
- height: 6rem; /* 96px */
1109
- }
1108
+ .u-h-24 {
1109
+ height: 6rem; /* 96px */
1110
+ }
1110
1111
 
1111
- .u-h-32 {
1112
- height: 8rem; /* 128px */
1113
- }
1112
+ .u-h-32 {
1113
+ height: 8rem; /* 128px */
1114
+ }
1114
1115
 
1115
- .u-h-40 {
1116
- height: 10rem; /* 160px */
1117
- }
1116
+ .u-h-40 {
1117
+ height: 10rem; /* 160px */
1118
+ }
1118
1119
 
1119
- .u-h-48 {
1120
- height: 12rem; /* 192px */
1121
- }
1120
+ .u-h-48 {
1121
+ height: 12rem; /* 192px */
1122
+ }
1122
1123
 
1123
- .u-h-auto {
1124
- height: auto;
1125
- }
1124
+ .u-h-auto {
1125
+ height: auto;
1126
+ }
1126
1127
 
1127
- .u-h-full {
1128
- height: 100%;
1129
- }
1128
+ .u-h-full {
1129
+ height: 100%;
1130
+ }
1130
1131
 
1131
- // max-width
1132
- .u-max-w-0 {
1133
- max-width: 0;
1134
- }
1132
+ // max-width
1133
+ .u-max-w-0 {
1134
+ max-width: 0;
1135
+ }
1135
1136
 
1136
- .u-max-w-px {
1137
- max-width: 1px;
1138
- }
1137
+ .u-max-w-px {
1138
+ max-width: 1px;
1139
+ }
1139
1140
 
1140
- .u-max-w-0-5 {
1141
- max-width: 0.125rem; /* 2px */
1142
- }
1141
+ .u-max-w-0-5 {
1142
+ max-width: 0.125rem; /* 2px */
1143
+ }
1143
1144
 
1144
- .u-max-w-1 {
1145
- max-width: 0.25rem; /* 4px */
1146
- }
1145
+ .u-max-w-1 {
1146
+ max-width: 0.25rem; /* 4px */
1147
+ }
1147
1148
 
1148
- .u-max-w-1-5 {
1149
- max-width: 0.375rem; /* 6px */
1150
- }
1149
+ .u-max-w-1-5 {
1150
+ max-width: 0.375rem; /* 6px */
1151
+ }
1151
1152
 
1152
- .u-max-w-2 {
1153
- max-width: 0.5rem; /* 8px */
1154
- }
1153
+ .u-max-w-2 {
1154
+ max-width: 0.5rem; /* 8px */
1155
+ }
1155
1156
 
1156
- .u-max-w-2-5 {
1157
- max-width: 0.625rem; /* 10px */
1158
- }
1157
+ .u-max-w-2-5 {
1158
+ max-width: 0.625rem; /* 10px */
1159
+ }
1159
1160
 
1160
- .u-max-w-3 {
1161
- max-width: 0.75rem; /* 12px */
1162
- }
1161
+ .u-max-w-3 {
1162
+ max-width: 0.75rem; /* 12px */
1163
+ }
1163
1164
 
1164
- .u-max-w-3-5 {
1165
- max-width: 0.875rem; /* 14px */
1166
- }
1165
+ .u-max-w-3-5 {
1166
+ max-width: 0.875rem; /* 14px */
1167
+ }
1167
1168
 
1168
- .u-max-w-4 {
1169
- max-width: 1rem; /* 16px */
1170
- }
1169
+ .u-max-w-4 {
1170
+ max-width: 1rem; /* 16px */
1171
+ }
1171
1172
 
1172
- .u-max-w-5 {
1173
- max-width: 1.25rem; /* 20px */
1174
- }
1173
+ .u-max-w-5 {
1174
+ max-width: 1.25rem; /* 20px */
1175
+ }
1175
1176
 
1176
- .u-max-w-6 {
1177
- max-width: 1.5rem; /* 24px */
1178
- }
1177
+ .u-max-w-6 {
1178
+ max-width: 1.5rem; /* 24px */
1179
+ }
1179
1180
 
1180
- .u-max-w-7 {
1181
- max-width: 1.75rem; /* 28px */
1182
- }
1181
+ .u-max-w-7 {
1182
+ max-width: 1.75rem; /* 28px */
1183
+ }
1183
1184
 
1184
- .u-max-w-8 {
1185
- max-width: 2rem; /* 32px */
1186
- }
1185
+ .u-max-w-8 {
1186
+ max-width: 2rem; /* 32px */
1187
+ }
1187
1188
 
1188
- .u-max-w-9 {
1189
- max-width: 2.25rem; /* 36px */
1190
- }
1189
+ .u-max-w-9 {
1190
+ max-width: 2.25rem; /* 36px */
1191
+ }
1191
1192
 
1192
- .u-max-w-10 {
1193
- max-width: 2.5rem; /* 40px */
1194
- }
1193
+ .u-max-w-10 {
1194
+ max-width: 2.5rem; /* 40px */
1195
+ }
1195
1196
 
1196
- .u-max-w-11 {
1197
- max-width: 2.75rem; /* 44px */
1198
- }
1197
+ .u-max-w-11 {
1198
+ max-width: 2.75rem; /* 44px */
1199
+ }
1199
1200
 
1200
- .u-max-w-12 {
1201
- max-width: 3rem; /* 48px */
1202
- }
1201
+ .u-max-w-12 {
1202
+ max-width: 3rem; /* 48px */
1203
+ }
1203
1204
 
1204
- .u-max-w-14 {
1205
- max-width: 3.5rem; /* 56px */
1206
- }
1205
+ .u-max-w-14 {
1206
+ max-width: 3.5rem; /* 56px */
1207
+ }
1207
1208
 
1208
- .u-max-w-16 {
1209
- max-width: 4rem; /* 64px */
1210
- }
1209
+ .u-max-w-16 {
1210
+ max-width: 4rem; /* 64px */
1211
+ }
1211
1212
 
1212
- .u-max-w-20 {
1213
- max-width: 5rem; /* 80px */
1214
- }
1213
+ .u-max-w-20 {
1214
+ max-width: 5rem; /* 80px */
1215
+ }
1215
1216
 
1216
- .u-max-w-24 {
1217
- max-width: 6rem; /* 96px */
1218
- }
1217
+ .u-max-w-24 {
1218
+ max-width: 6rem; /* 96px */
1219
+ }
1219
1220
 
1220
- .u-max-w-28 {
1221
- max-width: 7rem; /* 112px */
1222
- }
1221
+ .u-max-w-28 {
1222
+ max-width: 7rem; /* 112px */
1223
+ }
1223
1224
 
1224
- .u-max-w-32 {
1225
- max-width: 8rem; /* 128px */
1226
- }
1225
+ .u-max-w-32 {
1226
+ max-width: 8rem; /* 128px */
1227
+ }
1227
1228
 
1228
- .u-max-w-36 {
1229
- max-width: 9rem; /* 144px */
1230
- }
1229
+ .u-max-w-36 {
1230
+ max-width: 9rem; /* 144px */
1231
+ }
1231
1232
 
1232
- .u-max-w-40 {
1233
- max-width: 10rem; /* 160px */
1234
- }
1233
+ .u-max-w-40 {
1234
+ max-width: 10rem; /* 160px */
1235
+ }
1235
1236
 
1236
- .u-max-w-44 {
1237
- max-width: 11rem; /* 176px */
1238
- }
1237
+ .u-max-w-44 {
1238
+ max-width: 11rem; /* 176px */
1239
+ }
1239
1240
 
1240
- .u-max-w-48 {
1241
- max-width: 12rem; /* 192px */
1242
- }
1241
+ .u-max-w-48 {
1242
+ max-width: 12rem; /* 192px */
1243
+ }
1243
1244
 
1244
- .u-max-w-52 {
1245
- max-width: 13rem; /* 208px */
1246
- }
1245
+ .u-max-w-52 {
1246
+ max-width: 13rem; /* 208px */
1247
+ }
1247
1248
 
1248
- .u-max-w-56 {
1249
- max-width: 14rem; /* 224px */
1250
- }
1249
+ .u-max-w-56 {
1250
+ max-width: 14rem; /* 224px */
1251
+ }
1251
1252
 
1252
- .u-max-w-60 {
1253
- max-width: 15rem; /* 240px */
1254
- }
1253
+ .u-max-w-60 {
1254
+ max-width: 15rem; /* 240px */
1255
+ }
1255
1256
 
1256
- .u-max-w-64 {
1257
- max-width: 16rem; /* 256px */
1258
- }
1257
+ .u-max-w-64 {
1258
+ max-width: 16rem; /* 256px */
1259
+ }
1259
1260
 
1260
- .u-max-w-72 {
1261
- max-width: 18rem; /* 288px */
1262
- }
1261
+ .u-max-w-72 {
1262
+ max-width: 18rem; /* 288px */
1263
+ }
1263
1264
 
1264
- .u-max-w-80 {
1265
- max-width: 20rem; /* 320px */
1266
- }
1265
+ .u-max-w-80 {
1266
+ max-width: 20rem; /* 320px */
1267
+ }
1267
1268
 
1268
- .u-max-w-96 {
1269
- max-width: 24rem; /* 384px */
1270
- }
1269
+ .u-max-w-96 {
1270
+ max-width: 24rem; /* 384px */
1271
+ }
1271
1272
 
1272
- // Named max-width utilities
1273
- .u-max-w-none {
1274
- max-width: none;
1275
- }
1273
+ // Named max-width utilities
1274
+ .u-max-w-none {
1275
+ max-width: none;
1276
+ }
1276
1277
 
1277
- .u-max-w-xs {
1278
- max-width: 20rem; /* 320px */
1279
- }
1278
+ .u-max-w-xs {
1279
+ max-width: 20rem; /* 320px */
1280
+ }
1280
1281
 
1281
- .u-max-w-sm {
1282
- max-width: 24rem; /* 384px */
1283
- }
1282
+ .u-max-w-sm {
1283
+ max-width: 24rem; /* 384px */
1284
+ }
1284
1285
 
1285
- .u-max-w-md {
1286
- max-width: 28rem; /* 448px */
1287
- }
1286
+ .u-max-w-md {
1287
+ max-width: 28rem; /* 448px */
1288
+ }
1288
1289
 
1289
- .u-max-w-lg {
1290
- max-width: 32rem; /* 512px */
1291
- }
1290
+ .u-max-w-lg {
1291
+ max-width: 32rem; /* 512px */
1292
+ }
1292
1293
 
1293
- .u-max-w-xl {
1294
- max-width: 36rem; /* 576px */
1295
- }
1294
+ .u-max-w-xl {
1295
+ max-width: 36rem; /* 576px */
1296
+ }
1296
1297
 
1297
- .u-max-w-2xl {
1298
- max-width: 42rem; /* 672px */
1299
- }
1298
+ .u-max-w-2xl {
1299
+ max-width: 42rem; /* 672px */
1300
+ }
1300
1301
 
1301
- .u-max-w-3xl {
1302
- max-width: 48rem; /* 768px */
1303
- }
1302
+ .u-max-w-3xl {
1303
+ max-width: 48rem; /* 768px */
1304
+ }
1304
1305
 
1305
- .u-max-w-4xl {
1306
- max-width: 56rem; /* 896px */
1307
- }
1306
+ .u-max-w-4xl {
1307
+ max-width: 56rem; /* 896px */
1308
+ }
1308
1309
 
1309
- .u-max-w-5xl {
1310
- max-width: 64rem; /* 1024px */
1311
- }
1310
+ .u-max-w-5xl {
1311
+ max-width: 64rem; /* 1024px */
1312
+ }
1312
1313
 
1313
- .u-max-w-6xl {
1314
- max-width: 72rem; /* 1152px */
1315
- }
1314
+ .u-max-w-6xl {
1315
+ max-width: 72rem; /* 1152px */
1316
+ }
1316
1317
 
1317
- .u-max-w-7xl {
1318
- max-width: 80rem; /* 1280px */
1319
- }
1318
+ .u-max-w-7xl {
1319
+ max-width: 80rem; /* 1280px */
1320
+ }
1320
1321
 
1321
- // Special max-width utilities
1322
- .u-max-w-full {
1323
- max-width: 100%;
1324
- }
1322
+ // Special max-width utilities
1323
+ .u-max-w-full {
1324
+ max-width: 100%;
1325
+ }
1325
1326
 
1326
- .u-max-w-min {
1327
- max-width: min-content;
1328
- }
1327
+ .u-max-w-min {
1328
+ max-width: min-content;
1329
+ }
1329
1330
 
1330
- .u-max-w-max {
1331
- max-width: max-content;
1332
- }
1331
+ .u-max-w-max {
1332
+ max-width: max-content;
1333
+ }
1333
1334
 
1334
- .u-max-w-fit {
1335
- max-width: fit-content;
1336
- }
1335
+ .u-max-w-fit {
1336
+ max-width: fit-content;
1337
+ }
1337
1338
 
1338
- .u-max-w-prose {
1339
- max-width: 65ch;
1340
- }
1339
+ .u-max-w-prose {
1340
+ max-width: 65ch;
1341
+ }
1341
1342
 
1342
- // Screen size max-width utilities
1343
- .u-max-w-screen-sm {
1344
- max-width: 640px;
1345
- }
1343
+ // Screen size max-width utilities
1344
+ .u-max-w-screen-sm {
1345
+ max-width: 640px;
1346
+ }
1346
1347
 
1347
- .u-max-w-screen-md {
1348
- max-width: 768px;
1349
- }
1348
+ .u-max-w-screen-md {
1349
+ max-width: 768px;
1350
+ }
1350
1351
 
1351
- .u-max-w-screen-lg {
1352
- max-width: 1024px;
1353
- }
1352
+ .u-max-w-screen-lg {
1353
+ max-width: 1024px;
1354
+ }
1354
1355
 
1355
- .u-max-w-screen-xl {
1356
- max-width: 1280px;
1357
- }
1356
+ .u-max-w-screen-xl {
1357
+ max-width: 1280px;
1358
+ }
1358
1359
 
1359
- .u-max-w-screen-2xl {
1360
- max-width: 1536px;
1361
- }
1360
+ .u-max-w-screen-2xl {
1361
+ max-width: 1536px;
1362
+ }
1362
1363
 
1363
- // Gap utilities
1364
- .u-gap-0 {
1365
- gap: 0;
1366
- }
1364
+ // Gap utilities
1365
+ .u-gap-0 {
1366
+ gap: 0;
1367
+ }
1367
1368
 
1368
- .u-gap-x-0 {
1369
- column-gap: 0;
1370
- }
1369
+ .u-gap-x-0 {
1370
+ column-gap: 0;
1371
+ }
1371
1372
 
1372
- .u-gap-y-0 {
1373
- row-gap: 0;
1374
- }
1373
+ .u-gap-y-0 {
1374
+ row-gap: 0;
1375
+ }
1375
1376
 
1376
- .u-gap-px {
1377
- gap: 1px;
1378
- }
1377
+ .u-gap-px {
1378
+ gap: 1px;
1379
+ }
1379
1380
 
1380
- .u-gap-x-px {
1381
- column-gap: 1px;
1382
- }
1381
+ .u-gap-x-px {
1382
+ column-gap: 1px;
1383
+ }
1383
1384
 
1384
- .u-gap-y-px {
1385
- row-gap: 1px;
1386
- }
1385
+ .u-gap-y-px {
1386
+ row-gap: 1px;
1387
+ }
1387
1388
 
1388
- .u-gap-0-5 {
1389
- gap: 0.125rem; /* 2px */
1390
- }
1389
+ .u-gap-0-5 {
1390
+ gap: 0.125rem; /* 2px */
1391
+ }
1391
1392
 
1392
- .u-gap-x-0-5 {
1393
- column-gap: 0.125rem; /* 2px */
1394
- }
1393
+ .u-gap-x-0-5 {
1394
+ column-gap: 0.125rem; /* 2px */
1395
+ }
1395
1396
 
1396
- .u-gap-y-0-5 {
1397
- row-gap: 0.125rem; /* 2px */
1398
- }
1397
+ .u-gap-y-0-5 {
1398
+ row-gap: 0.125rem; /* 2px */
1399
+ }
1399
1400
 
1400
- .u-gap-1 {
1401
- gap: 0.25rem; /* 4px */
1402
- }
1401
+ .u-gap-1 {
1402
+ gap: 0.25rem; /* 4px */
1403
+ }
1403
1404
 
1404
- .u-gap-x-1 {
1405
- column-gap: 0.25rem; /* 4px */
1406
- }
1405
+ .u-gap-x-1 {
1406
+ column-gap: 0.25rem; /* 4px */
1407
+ }
1407
1408
 
1408
- .u-gap-y-1 {
1409
- row-gap: 0.25rem; /* 4px */
1410
- }
1409
+ .u-gap-y-1 {
1410
+ row-gap: 0.25rem; /* 4px */
1411
+ }
1411
1412
 
1412
- .u-gap-1-5 {
1413
- gap: 0.375rem; /* 6px */
1414
- }
1413
+ .u-gap-1-5 {
1414
+ gap: 0.375rem; /* 6px */
1415
+ }
1415
1416
 
1416
- .u-gap-x-1-5 {
1417
- column-gap: 0.375rem; /* 6px */
1418
- }
1417
+ .u-gap-x-1-5 {
1418
+ column-gap: 0.375rem; /* 6px */
1419
+ }
1419
1420
 
1420
- .u-gap-y-1-5 {
1421
- row-gap: 0.375rem; /* 6px */
1422
- }
1421
+ .u-gap-y-1-5 {
1422
+ row-gap: 0.375rem; /* 6px */
1423
+ }
1423
1424
 
1424
- .u-gap-2 {
1425
- gap: 0.5rem; /* 8px */
1426
- }
1425
+ .u-gap-2 {
1426
+ gap: 0.5rem; /* 8px */
1427
+ }
1427
1428
 
1428
- .u-gap-x-2 {
1429
- column-gap: 0.5rem; /* 8px */
1430
- }
1429
+ .u-gap-x-2 {
1430
+ column-gap: 0.5rem; /* 8px */
1431
+ }
1431
1432
 
1432
- .u-gap-y-2 {
1433
- row-gap: 0.5rem; /* 8px */
1434
- }
1433
+ .u-gap-y-2 {
1434
+ row-gap: 0.5rem; /* 8px */
1435
+ }
1435
1436
 
1436
- .u-gap-2-5 {
1437
- gap: 0.625rem; /* 10px */
1438
- }
1437
+ .u-gap-2-5 {
1438
+ gap: 0.625rem; /* 10px */
1439
+ }
1439
1440
 
1440
- .u-gap-x-2-5 {
1441
- column-gap: 0.625rem; /* 10px */
1442
- }
1441
+ .u-gap-x-2-5 {
1442
+ column-gap: 0.625rem; /* 10px */
1443
+ }
1443
1444
 
1444
- .u-gap-y-2-5 {
1445
- row-gap: 0.625rem; /* 10px */
1446
- }
1445
+ .u-gap-y-2-5 {
1446
+ row-gap: 0.625rem; /* 10px */
1447
+ }
1447
1448
 
1448
- .u-gap-3 {
1449
- gap: 0.75rem; /* 12px */
1450
- }
1449
+ .u-gap-3 {
1450
+ gap: 0.75rem; /* 12px */
1451
+ }
1451
1452
 
1452
- .u-gap-x-3 {
1453
- column-gap: 0.75rem; /* 12px */
1454
- }
1453
+ .u-gap-x-3 {
1454
+ column-gap: 0.75rem; /* 12px */
1455
+ }
1455
1456
 
1456
- .u-gap-y-3 {
1457
- row-gap: 0.75rem; /* 12px */
1458
- }
1457
+ .u-gap-y-3 {
1458
+ row-gap: 0.75rem; /* 12px */
1459
+ }
1459
1460
 
1460
- .u-gap-3-5 {
1461
- gap: 0.875rem; /* 14px */
1462
- }
1461
+ .u-gap-3-5 {
1462
+ gap: 0.875rem; /* 14px */
1463
+ }
1463
1464
 
1464
- .u-gap-x-3-5 {
1465
- column-gap: 0.875rem; /* 14px */
1466
- }
1465
+ .u-gap-x-3-5 {
1466
+ column-gap: 0.875rem; /* 14px */
1467
+ }
1467
1468
 
1468
- .u-gap-y-3-5 {
1469
- row-gap: 0.875rem; /* 14px */
1470
- }
1469
+ .u-gap-y-3-5 {
1470
+ row-gap: 0.875rem; /* 14px */
1471
+ }
1471
1472
 
1472
- .u-gap-4 {
1473
- gap: 1rem; /* 16px */
1474
- }
1473
+ .u-gap-4 {
1474
+ gap: 1rem; /* 16px */
1475
+ }
1475
1476
 
1476
- .u-gap-x-4 {
1477
- column-gap: 1rem; /* 16px */
1478
- }
1477
+ .u-gap-x-4 {
1478
+ column-gap: 1rem; /* 16px */
1479
+ }
1479
1480
 
1480
- .u-gap-y-4 {
1481
- row-gap: 1rem; /* 16px */
1482
- }
1481
+ .u-gap-y-4 {
1482
+ row-gap: 1rem; /* 16px */
1483
+ }
1483
1484
 
1484
- .u-gap-5 {
1485
- gap: 1.25rem; /* 20px */
1486
- }
1485
+ .u-gap-5 {
1486
+ gap: 1.25rem; /* 20px */
1487
+ }
1487
1488
 
1488
- .u-gap-x-5 {
1489
- column-gap: 1.25rem; /* 20px */
1490
- }
1489
+ .u-gap-x-5 {
1490
+ column-gap: 1.25rem; /* 20px */
1491
+ }
1491
1492
 
1492
- .u-gap-y-5 {
1493
- row-gap: 1.25rem; /* 20px */
1494
- }
1493
+ .u-gap-y-5 {
1494
+ row-gap: 1.25rem; /* 20px */
1495
+ }
1495
1496
 
1496
- .u-gap-6 {
1497
- gap: 1.5rem; /* 24px */
1498
- }
1497
+ .u-gap-6 {
1498
+ gap: 1.5rem; /* 24px */
1499
+ }
1499
1500
 
1500
- .u-gap-x-6 {
1501
- column-gap: 1.5rem; /* 24px */
1502
- }
1501
+ .u-gap-x-6 {
1502
+ column-gap: 1.5rem; /* 24px */
1503
+ }
1503
1504
 
1504
- .u-gap-y-6 {
1505
- row-gap: 1.5rem; /* 24px */
1506
- }
1505
+ .u-gap-y-6 {
1506
+ row-gap: 1.5rem; /* 24px */
1507
+ }
1507
1508
 
1508
- .u-gap-7 {
1509
- gap: 1.75rem; /* 28px */
1510
- }
1509
+ .u-gap-7 {
1510
+ gap: 1.75rem; /* 28px */
1511
+ }
1511
1512
 
1512
- .u-gap-x-7 {
1513
- column-gap: 1.75rem; /* 28px */
1514
- }
1513
+ .u-gap-x-7 {
1514
+ column-gap: 1.75rem; /* 28px */
1515
+ }
1515
1516
 
1516
- .u-gap-y-7 {
1517
- row-gap: 1.75rem; /* 28px */
1518
- }
1517
+ .u-gap-y-7 {
1518
+ row-gap: 1.75rem; /* 28px */
1519
+ }
1519
1520
 
1520
- .u-gap-8 {
1521
- gap: 2rem; /* 32px */
1522
- }
1521
+ .u-gap-8 {
1522
+ gap: 2rem; /* 32px */
1523
+ }
1523
1524
 
1524
- .u-gap-x-8 {
1525
- column-gap: 2rem; /* 32px */
1526
- }
1525
+ .u-gap-x-8 {
1526
+ column-gap: 2rem; /* 32px */
1527
+ }
1527
1528
 
1528
- .u-gap-y-8 {
1529
- row-gap: 2rem; /* 32px */
1530
- }
1529
+ .u-gap-y-8 {
1530
+ row-gap: 2rem; /* 32px */
1531
+ }
1531
1532
 
1532
- .u-gap-9 {
1533
- gap: 2.25rem; /* 36px */
1534
- }
1533
+ .u-gap-9 {
1534
+ gap: 2.25rem; /* 36px */
1535
+ }
1535
1536
 
1536
- .u-gap-x-9 {
1537
- column-gap: 2.25rem; /* 36px */
1538
- }
1537
+ .u-gap-x-9 {
1538
+ column-gap: 2.25rem; /* 36px */
1539
+ }
1539
1540
 
1540
- .u-gap-y-9 {
1541
- row-gap: 2.25rem; /* 36px */
1542
- }
1541
+ .u-gap-y-9 {
1542
+ row-gap: 2.25rem; /* 36px */
1543
+ }
1543
1544
 
1544
- .u-gap-10 {
1545
- gap: 2.5rem; /* 40px */
1546
- }
1545
+ .u-gap-10 {
1546
+ gap: 2.5rem; /* 40px */
1547
+ }
1547
1548
 
1548
- .u-gap-x-10 {
1549
- column-gap: 2.5rem; /* 40px */
1550
- }
1549
+ .u-gap-x-10 {
1550
+ column-gap: 2.5rem; /* 40px */
1551
+ }
1551
1552
 
1552
- .u-gap-y-10 {
1553
- row-gap: 2.5rem; /* 40px */
1554
- }
1553
+ .u-gap-y-10 {
1554
+ row-gap: 2.5rem; /* 40px */
1555
+ }
1555
1556
 
1556
- .u-gap-11 {
1557
- gap: 2.75rem; /* 44px */
1558
- }
1557
+ .u-gap-11 {
1558
+ gap: 2.75rem; /* 44px */
1559
+ }
1559
1560
 
1560
- .u-gap-x-11 {
1561
- column-gap: 2.75rem; /* 44px */
1562
- }
1561
+ .u-gap-x-11 {
1562
+ column-gap: 2.75rem; /* 44px */
1563
+ }
1563
1564
 
1564
- .u-gap-y-11 {
1565
- row-gap: 2.75rem; /* 44px */
1566
- }
1565
+ .u-gap-y-11 {
1566
+ row-gap: 2.75rem; /* 44px */
1567
+ }
1567
1568
 
1568
- .u-gap-12 {
1569
- gap: 3rem; /* 48px */
1570
- }
1569
+ .u-gap-12 {
1570
+ gap: 3rem; /* 48px */
1571
+ }
1571
1572
 
1572
- .u-gap-x-12 {
1573
- column-gap: 3rem; /* 48px */
1574
- }
1573
+ .u-gap-x-12 {
1574
+ column-gap: 3rem; /* 48px */
1575
+ }
1575
1576
 
1576
- .u-gap-y-12 {
1577
- row-gap: 3rem; /* 48px */
1578
- }
1577
+ .u-gap-y-12 {
1578
+ row-gap: 3rem; /* 48px */
1579
+ }
1579
1580
 
1580
- .u-gap-14 {
1581
- gap: 3.5rem; /* 56px */
1582
- }
1581
+ .u-gap-14 {
1582
+ gap: 3.5rem; /* 56px */
1583
+ }
1583
1584
 
1584
- .u-gap-x-14 {
1585
- column-gap: 3.5rem; /* 56px */
1586
- }
1585
+ .u-gap-x-14 {
1586
+ column-gap: 3.5rem; /* 56px */
1587
+ }
1587
1588
 
1588
- .u-gap-y-14 {
1589
- row-gap: 3.5rem; /* 56px */
1590
- }
1589
+ .u-gap-y-14 {
1590
+ row-gap: 3.5rem; /* 56px */
1591
+ }
1591
1592
 
1592
- .u-gap-16 {
1593
- gap: 4rem; /* 64px */
1594
- }
1593
+ .u-gap-16 {
1594
+ gap: 4rem; /* 64px */
1595
+ }
1595
1596
 
1596
- .u-gap-x-16 {
1597
- column-gap: 4rem; /* 64px */
1598
- }
1597
+ .u-gap-x-16 {
1598
+ column-gap: 4rem; /* 64px */
1599
+ }
1599
1600
 
1600
- .u-gap-y-16 {
1601
- row-gap: 4rem; /* 64px */
1602
- }
1601
+ .u-gap-y-16 {
1602
+ row-gap: 4rem; /* 64px */
1603
+ }
1603
1604
 
1604
- .u-gap-20 {
1605
- gap: 5rem; /* 80px */
1606
- }
1605
+ .u-gap-20 {
1606
+ gap: 5rem; /* 80px */
1607
+ }
1607
1608
 
1608
- .u-gap-x-20 {
1609
- column-gap: 5rem; /* 80px */
1610
- }
1609
+ .u-gap-x-20 {
1610
+ column-gap: 5rem; /* 80px */
1611
+ }
1611
1612
 
1612
- .u-gap-y-20 {
1613
- row-gap: 5rem; /* 80px */
1614
- }
1613
+ .u-gap-y-20 {
1614
+ row-gap: 5rem; /* 80px */
1615
+ }
1615
1616
 
1616
- .u-gap-24 {
1617
- gap: 6rem; /* 96px */
1618
- }
1617
+ .u-gap-24 {
1618
+ gap: 6rem; /* 96px */
1619
+ }
1619
1620
 
1620
- .u-gap-x-24 {
1621
- column-gap: 6rem; /* 96px */
1622
- }
1621
+ .u-gap-x-24 {
1622
+ column-gap: 6rem; /* 96px */
1623
+ }
1623
1624
 
1624
- .u-gap-y-24 {
1625
- row-gap: 6rem; /* 96px */
1626
- }
1625
+ .u-gap-y-24 {
1626
+ row-gap: 6rem; /* 96px */
1627
+ }
1627
1628
 
1628
- .u-gap-28 {
1629
- gap: 7rem; /* 112px */
1630
- }
1629
+ .u-gap-28 {
1630
+ gap: 7rem; /* 112px */
1631
+ }
1631
1632
 
1632
- .u-gap-x-28 {
1633
- column-gap: 7rem; /* 112px */
1634
- }
1633
+ .u-gap-x-28 {
1634
+ column-gap: 7rem; /* 112px */
1635
+ }
1635
1636
 
1636
- .u-gap-y-28 {
1637
- row-gap: 7rem; /* 112px */
1638
- }
1637
+ .u-gap-y-28 {
1638
+ row-gap: 7rem; /* 112px */
1639
+ }
1639
1640
 
1640
- .u-gap-32 {
1641
- gap: 8rem; /* 128px */
1642
- }
1641
+ .u-gap-32 {
1642
+ gap: 8rem; /* 128px */
1643
+ }
1643
1644
 
1644
- .u-gap-x-32 {
1645
- column-gap: 8rem; /* 128px */
1646
- }
1645
+ .u-gap-x-32 {
1646
+ column-gap: 8rem; /* 128px */
1647
+ }
1647
1648
 
1648
- .u-gap-y-32 {
1649
- row-gap: 8rem; /* 128px */
1650
- }
1649
+ .u-gap-y-32 {
1650
+ row-gap: 8rem; /* 128px */
1651
+ }
1651
1652
 
1652
- .u-gap-36 {
1653
- gap: 9rem; /* 144px */
1654
- }
1653
+ .u-gap-36 {
1654
+ gap: 9rem; /* 144px */
1655
+ }
1655
1656
 
1656
- .u-gap-x-36 {
1657
- column-gap: 9rem; /* 144px */
1658
- }
1657
+ .u-gap-x-36 {
1658
+ column-gap: 9rem; /* 144px */
1659
+ }
1659
1660
 
1660
- .u-gap-y-36 {
1661
- row-gap: 9rem; /* 144px */
1662
- }
1661
+ .u-gap-y-36 {
1662
+ row-gap: 9rem; /* 144px */
1663
+ }
1663
1664
 
1664
- .u-gap-40 {
1665
- gap: 10rem; /* 160px */
1666
- }
1665
+ .u-gap-40 {
1666
+ gap: 10rem; /* 160px */
1667
+ }
1667
1668
 
1668
- .u-gap-x-40 {
1669
- column-gap: 10rem; /* 160px */
1670
- }
1669
+ .u-gap-x-40 {
1670
+ column-gap: 10rem; /* 160px */
1671
+ }
1671
1672
 
1672
- .u-gap-y-40 {
1673
- row-gap: 10rem; /* 160px */
1674
- }
1673
+ .u-gap-y-40 {
1674
+ row-gap: 10rem; /* 160px */
1675
+ }
1675
1676
 
1676
- .u-gap-44 {
1677
- gap: 11rem; /* 176px */
1678
- }
1677
+ .u-gap-44 {
1678
+ gap: 11rem; /* 176px */
1679
+ }
1679
1680
 
1680
- .u-gap-x-44 {
1681
- column-gap: 11rem; /* 176px */
1682
- }
1681
+ .u-gap-x-44 {
1682
+ column-gap: 11rem; /* 176px */
1683
+ }
1683
1684
 
1684
- .u-gap-y-44 {
1685
- row-gap: 11rem; /* 176px */
1686
- }
1685
+ .u-gap-y-44 {
1686
+ row-gap: 11rem; /* 176px */
1687
+ }
1687
1688
 
1688
- .u-gap-48 {
1689
- gap: 12rem; /* 192px */
1690
- }
1689
+ .u-gap-48 {
1690
+ gap: 12rem; /* 192px */
1691
+ }
1691
1692
 
1692
- .u-gap-x-48 {
1693
- column-gap: 12rem; /* 192px */
1694
- }
1693
+ .u-gap-x-48 {
1694
+ column-gap: 12rem; /* 192px */
1695
+ }
1695
1696
 
1696
- .u-gap-y-48 {
1697
- row-gap: 12rem; /* 192px */
1698
- }
1697
+ .u-gap-y-48 {
1698
+ row-gap: 12rem; /* 192px */
1699
+ }
1699
1700
 
1700
- .u-gap-52 {
1701
- gap: 13rem; /* 208px */
1702
- }
1701
+ .u-gap-52 {
1702
+ gap: 13rem; /* 208px */
1703
+ }
1703
1704
 
1704
- .u-gap-x-52 {
1705
- column-gap: 13rem; /* 208px */
1706
- }
1705
+ .u-gap-x-52 {
1706
+ column-gap: 13rem; /* 208px */
1707
+ }
1707
1708
 
1708
- .u-gap-y-52 {
1709
- row-gap: 13rem; /* 208px */
1710
- }
1709
+ .u-gap-y-52 {
1710
+ row-gap: 13rem; /* 208px */
1711
+ }
1711
1712
 
1712
- .u-gap-56 {
1713
- gap: 14rem; /* 224px */
1714
- }
1713
+ .u-gap-56 {
1714
+ gap: 14rem; /* 224px */
1715
+ }
1715
1716
 
1716
- .u-gap-x-56 {
1717
- column-gap: 14rem; /* 224px */
1718
- }
1717
+ .u-gap-x-56 {
1718
+ column-gap: 14rem; /* 224px */
1719
+ }
1719
1720
 
1720
- .u-gap-y-56 {
1721
- row-gap: 14rem; /* 224px */
1722
- }
1721
+ .u-gap-y-56 {
1722
+ row-gap: 14rem; /* 224px */
1723
+ }
1723
1724
 
1724
- .u-gap-60 {
1725
- gap: 15rem; /* 240px */
1726
- }
1725
+ .u-gap-60 {
1726
+ gap: 15rem; /* 240px */
1727
+ }
1727
1728
 
1728
- .u-gap-x-60 {
1729
- column-gap: 15rem; /* 240px */
1730
- }
1729
+ .u-gap-x-60 {
1730
+ column-gap: 15rem; /* 240px */
1731
+ }
1731
1732
 
1732
- .u-gap-y-60 {
1733
- row-gap: 15rem; /* 240px */
1734
- }
1733
+ .u-gap-y-60 {
1734
+ row-gap: 15rem; /* 240px */
1735
+ }
1735
1736
 
1736
- .u-gap-64 {
1737
- gap: 16rem; /* 256px */
1738
- }
1737
+ .u-gap-64 {
1738
+ gap: 16rem; /* 256px */
1739
+ }
1739
1740
 
1740
- .u-gap-x-64 {
1741
- column-gap: 16rem; /* 256px */
1742
- }
1741
+ .u-gap-x-64 {
1742
+ column-gap: 16rem; /* 256px */
1743
+ }
1743
1744
 
1744
- .u-gap-y-64 {
1745
- row-gap: 16rem; /* 256px */
1746
- }
1745
+ .u-gap-y-64 {
1746
+ row-gap: 16rem; /* 256px */
1747
+ }
1747
1748
 
1748
- .u-gap-72 {
1749
- gap: 18rem; /* 288px */
1750
- }
1749
+ .u-gap-72 {
1750
+ gap: 18rem; /* 288px */
1751
+ }
1751
1752
 
1752
- .u-gap-x-72 {
1753
- column-gap: 18rem; /* 288px */
1754
- }
1753
+ .u-gap-x-72 {
1754
+ column-gap: 18rem; /* 288px */
1755
+ }
1755
1756
 
1756
- .u-gap-y-72 {
1757
- row-gap: 18rem; /* 288px */
1758
- }
1757
+ .u-gap-y-72 {
1758
+ row-gap: 18rem; /* 288px */
1759
+ }
1759
1760
 
1760
- // font-weight
1761
- .u-font-medium {
1762
- font-weight: 500;
1763
- }
1761
+ // font-weight
1762
+ .u-font-medium {
1763
+ font-weight: 500;
1764
+ }
1764
1765
 
1765
- .u-font-semibold {
1766
- font-weight: 600;
1767
- }
1766
+ .u-font-semibold {
1767
+ font-weight: 600;
1768
+ }
1768
1769
 
1769
- .u-font-bold {
1770
- font-weight: 700;
1771
- }
1770
+ .u-font-bold {
1771
+ font-weight: 700;
1772
+ }
1772
1773
 
1773
- .u-font-black {
1774
- font-weight: 900;
1775
- }
1774
+ .u-font-black {
1775
+ font-weight: 900;
1776
+ }
1776
1777
 
1777
- // border-radius
1778
- .u-rounded-none {
1779
- border-radius: 0;
1780
- }
1778
+ // border-radius
1779
+ .u-rounded-none {
1780
+ border-radius: 0;
1781
+ }
1781
1782
 
1782
- .u-rounded-xs {
1783
- border-radius: 0.125rem; /* 2px */
1784
- }
1783
+ .u-rounded-xs {
1784
+ border-radius: 0.125rem; /* 2px */
1785
+ }
1785
1786
 
1786
- .u-rounded {
1787
- border-radius: 0.25rem; /* 4px */
1788
- }
1787
+ .u-rounded {
1788
+ border-radius: 0.25rem; /* 4px */
1789
+ }
1789
1790
 
1790
- .u-rounded-md {
1791
- border-radius: 0.375rem; /* 6px */
1792
- }
1791
+ .u-rounded-md {
1792
+ border-radius: 0.375rem; /* 6px */
1793
+ }
1793
1794
 
1794
- .u-rounded-lg {
1795
- border-radius: 0.5rem; /* 8px */
1796
- }
1795
+ .u-rounded-lg {
1796
+ border-radius: 0.5rem; /* 8px */
1797
+ }
1797
1798
 
1798
- .u-rounded-xl {
1799
- border-radius: 0.75rem; /* 12px */
1800
- }
1799
+ .u-rounded-xl {
1800
+ border-radius: 0.75rem; /* 12px */
1801
+ }
1801
1802
 
1802
- .u-rounded-2xl {
1803
- border-radius: 1rem; /* 16px */
1804
- }
1803
+ .u-rounded-2xl {
1804
+ border-radius: 1rem; /* 16px */
1805
+ }
1805
1806
 
1806
- .u-rounded-3xl {
1807
- border-radius: 1.5rem; /* 24px */
1808
- }
1807
+ .u-rounded-3xl {
1808
+ border-radius: 1.5rem; /* 24px */
1809
+ }
1809
1810
 
1810
- .u-rounded-full {
1811
- border-radius: 9999px; /* 50% */
1812
- }
1811
+ .u-rounded-full {
1812
+ border-radius: 9999px; /* 50% */
1813
+ }
1813
1814
 
1814
- // flex-basis
1815
- .u-basis-0 {
1816
- flex-basis: 0;
1817
- }
1815
+ // flex-basis
1816
+ .u-basis-0 {
1817
+ flex-basis: 0;
1818
+ }
1818
1819
 
1819
- .u-basis-1 {
1820
- flex-basis: 0.25rem; /* 4px */
1821
- }
1820
+ .u-basis-1 {
1821
+ flex-basis: 0.25rem; /* 4px */
1822
+ }
1822
1823
 
1823
- .u-basis-2 {
1824
- flex-basis: 0.5rem; /* 8px */
1825
- }
1824
+ .u-basis-2 {
1825
+ flex-basis: 0.5rem; /* 8px */
1826
+ }
1826
1827
 
1827
- .u-basis-3 {
1828
- flex-basis: 0.75rem; /* 12px */
1829
- }
1828
+ .u-basis-3 {
1829
+ flex-basis: 0.75rem; /* 12px */
1830
+ }
1830
1831
 
1831
- .u-basis-4 {
1832
- flex-basis: 1rem; /* 16px */
1833
- }
1832
+ .u-basis-4 {
1833
+ flex-basis: 1rem; /* 16px */
1834
+ }
1834
1835
 
1835
- .u-basis-5 {
1836
- flex-basis: 1.25rem; /* 20px */
1837
- }
1836
+ .u-basis-5 {
1837
+ flex-basis: 1.25rem; /* 20px */
1838
+ }
1838
1839
 
1839
- .u-basis-6 {
1840
- flex-basis: 1.5rem; /* 24px */
1841
- }
1840
+ .u-basis-6 {
1841
+ flex-basis: 1.5rem; /* 24px */
1842
+ }
1842
1843
 
1843
- .u-basis-auto {
1844
- flex-basis: auto;
1845
- }
1844
+ .u-basis-auto {
1845
+ flex-basis: auto;
1846
+ }
1846
1847
 
1847
- .u-basis-full {
1848
- flex-basis: 100%;
1849
- }
1848
+ .u-basis-full {
1849
+ flex-basis: 100%;
1850
+ }
1850
1851
 
1851
- .u-line-clamp-2 {
1852
- display: -webkit-box;
1853
- -webkit-box-orient: vertical;
1854
- -webkit-line-clamp: 2;
1855
- line-clamp: 2;
1856
- overflow: hidden;
1857
- text-overflow: ellipsis;
1858
- }
1852
+ .u-line-clamp-2 {
1853
+ display: -webkit-box;
1854
+ -webkit-box-orient: vertical;
1855
+ -webkit-line-clamp: 2;
1856
+ line-clamp: 2;
1857
+ overflow: hidden;
1858
+ text-overflow: ellipsis;
1859
+ }
1859
1860
 
1860
- .u-line-clamp-3 {
1861
- display: -webkit-box;
1862
- -webkit-box-orient: vertical;
1863
- -webkit-line-clamp: 3;
1864
- line-clamp: 3;
1865
- overflow: hidden;
1866
- text-overflow: ellipsis;
1867
- }
1861
+ .u-line-clamp-3 {
1862
+ display: -webkit-box;
1863
+ -webkit-box-orient: vertical;
1864
+ -webkit-line-clamp: 3;
1865
+ line-clamp: 3;
1866
+ overflow: hidden;
1867
+ text-overflow: ellipsis;
1868
+ }
1868
1869
 
1869
- .u-line-clamp-4 {
1870
- display: -webkit-box;
1871
- -webkit-box-orient: vertical;
1872
- -webkit-line-clamp: 4;
1873
- line-clamp: 4;
1874
- overflow: hidden;
1875
- text-overflow: ellipsis;
1876
- }
1870
+ .u-line-clamp-4 {
1871
+ display: -webkit-box;
1872
+ -webkit-box-orient: vertical;
1873
+ -webkit-line-clamp: 4;
1874
+ line-clamp: 4;
1875
+ overflow: hidden;
1876
+ text-overflow: ellipsis;
1877
+ }
1877
1878
 
1878
- // transition
1879
- .u-transition-opacity {
1880
- transition-property: opacity;
1881
- transition-duration: 150ms;
1882
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1883
- }
1879
+ // transition
1880
+ .u-transition-opacity {
1881
+ transition-property: opacity;
1882
+ transition-duration: 150ms;
1883
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1884
+ }
1884
1885
 
1885
- // shadow
1886
+ // shadow
1886
1887
 
1887
- .u-shadow-xs {
1888
- box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
1889
- }
1888
+ .u-shadow-xs {
1889
+ box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
1890
+ }
1890
1891
 
1891
- .u-shadow-sm {
1892
- box-shadow:
1893
- 0 1px 3px 0 rgb(0 0 0 / 10%),
1894
- 0 1px 2px -1px rgb(0 0 0 / 10%);
1895
- }
1892
+ .u-shadow-sm {
1893
+ box-shadow:
1894
+ 0 1px 3px 0 rgb(0 0 0 / 10%),
1895
+ 0 1px 2px -1px rgb(0 0 0 / 10%);
1896
+ }
1896
1897
 
1897
- .u-shadow-md {
1898
- box-shadow:
1899
- 0 4px 6px -1px rgb(0 0 0 / 10%),
1900
- 0 2px 4px -2px rgb(0 0 0 / 10%);
1901
- }
1898
+ .u-shadow-md {
1899
+ box-shadow:
1900
+ 0 4px 6px -1px rgb(0 0 0 / 10%),
1901
+ 0 2px 4px -2px rgb(0 0 0 / 10%);
1902
+ }
1902
1903
 
1903
- .u-shadow-lg {
1904
- box-shadow:
1905
- 0 10px 15px -3px rgb(0 0 0 / 10%),
1906
- 0 4px 6px -4px rgb(0 0 0 / 10%);
1904
+ .u-shadow-lg {
1905
+ box-shadow:
1906
+ 0 10px 15px -3px rgb(0 0 0 / 10%),
1907
+ 0 4px 6px -4px rgb(0 0 0 / 10%);
1908
+ }
1907
1909
  }