@vaadin/react-components 25.0.0-alpha7 → 25.0.0-beta1

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 (71) hide show
  1. package/ConfirmDialog.d.ts +1 -1
  2. package/ConfirmDialog.d.ts.map +1 -1
  3. package/ConfirmDialog.js.map +1 -1
  4. package/ContextMenu.js +1 -1
  5. package/ContextMenu.js.map +2 -2
  6. package/Dialog.d.ts +2 -2
  7. package/Dialog.d.ts.map +1 -1
  8. package/Dialog.js +1 -1
  9. package/Dialog.js.map +1 -1
  10. package/LoginOverlay.js +1 -1
  11. package/LoginOverlay.js.map +2 -2
  12. package/MultiSelectComboBox.js +1 -1
  13. package/MultiSelectComboBox.js.map +2 -2
  14. package/Popover.d.ts +8 -2
  15. package/Popover.d.ts.map +1 -1
  16. package/Popover.js +1 -1
  17. package/Popover.js.map +3 -3
  18. package/Select.js.map +2 -2
  19. package/TabSheet.d.ts +0 -23
  20. package/TabSheet.d.ts.map +1 -1
  21. package/TabSheet.js +1 -1
  22. package/TabSheet.js.map +3 -3
  23. package/Tooltip.js +1 -1
  24. package/Tooltip.js.map +2 -2
  25. package/css/lumo/Utility.module.css +16 -47
  26. package/css/lumo/utilities/Accessibility.module.css +17 -15
  27. package/css/lumo/utilities/Background.module.css +189 -150
  28. package/css/lumo/utilities/Border.module.css +173 -141
  29. package/css/lumo/utilities/Filter.module.css +35 -26
  30. package/css/lumo/utilities/FlexboxGrid.module.css +780 -2
  31. package/css/lumo/utilities/Layout.module.css +544 -413
  32. package/css/lumo/utilities/Shadows.module.css +27 -20
  33. package/css/lumo/utilities/Sizing.module.css +142 -115
  34. package/css/lumo/utilities/Spacing.module.css +682 -536
  35. package/css/lumo/utilities/Transition.module.css +46 -44
  36. package/css/lumo/utilities/Typography.module.css +366 -280
  37. package/generated/ContextMenu.d.ts +2 -0
  38. package/generated/ContextMenu.d.ts.map +1 -1
  39. package/generated/LoginOverlay.d.ts +2 -0
  40. package/generated/LoginOverlay.d.ts.map +1 -1
  41. package/generated/MultiSelectComboBox.d.ts +2 -2
  42. package/generated/MultiSelectComboBox.d.ts.map +1 -1
  43. package/generated/Tooltip.d.ts +8 -3
  44. package/generated/Tooltip.d.ts.map +1 -1
  45. package/package.json +69 -77
  46. package/renderers/useRenderer.js +1 -1
  47. package/renderers/useRenderer.js.map +2 -2
  48. package/utils/createComponent.js +1 -1
  49. package/utils/createComponent.js.map +2 -2
  50. package/utils/warnings.d.ts +2 -0
  51. package/utils/warnings.d.ts.map +1 -0
  52. package/utils/warnings.js +2 -0
  53. package/utils/warnings.js.map +7 -0
  54. package/css/Lumo.css +0 -15
  55. package/css/lumo/Badge.css +0 -165
  56. package/css/lumo/Color.css +0 -122
  57. package/css/lumo/ColorBase.css +0 -87
  58. package/css/lumo/Font.css +0 -22
  59. package/css/lumo/FontIcons.css +0 -59
  60. package/css/lumo/Globals.css +0 -85
  61. package/css/lumo/Sizing.css +0 -17
  62. package/css/lumo/Spacing.css +0 -25
  63. package/css/lumo/Style.css +0 -21
  64. package/css/lumo/Typography.css +0 -96
  65. package/css/lumo/UserColors.css +0 -22
  66. package/css/lumo/mixins/FieldButton.css +0 -29
  67. package/css/lumo/mixins/MenuOverlay.css +0 -64
  68. package/css/lumo/mixins/MenuOverlayCore.css +0 -32
  69. package/css/lumo/mixins/Overlay.css +0 -67
  70. package/css/lumo/mixins/RequiredField.css +0 -103
  71. package/css/lumo/utilities/FlexboxAndGrid.module.css +0 -613
@@ -1,498 +1,629 @@
1
- /* Generated file, do not edit */
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2000 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ /* === Aspect ratio === */
7
+ .aspect-square {
8
+ aspect-ratio: 1 / 1;
9
+ }
2
10
 
11
+ .aspect-video {
12
+ aspect-ratio: 16 / 9;
13
+ }
3
14
 
4
- /* === Aspect ratio === */
5
- .aspect-square {
6
- aspect-ratio: 1 / 1;
7
- }
8
- .aspect-video {
9
- aspect-ratio: 16 / 9;
10
- }
15
+ /* === Box sizing === */
16
+ .box-border {
17
+ box-sizing: border-box;
18
+ }
11
19
 
12
- /* === Box sizing === */
13
- .box-border {
14
- box-sizing: border-box;
15
- }
16
- .box-content {
17
- box-sizing: content-box;
18
- }
20
+ .box-content {
21
+ box-sizing: content-box;
22
+ }
23
+
24
+ /* === Display === */
25
+ .block {
26
+ display: block;
27
+ }
28
+
29
+ .flex {
30
+ display: flex;
31
+ }
32
+
33
+ .grid {
34
+ display: grid;
35
+ }
36
+
37
+ .hidden {
38
+ display: none;
39
+ }
40
+
41
+ .inline {
42
+ display: inline;
43
+ }
44
+
45
+ .inline-block {
46
+ display: inline-block;
47
+ }
48
+
49
+ .inline-flex {
50
+ display: inline-flex;
51
+ }
52
+
53
+ .inline-grid {
54
+ display: inline-grid;
55
+ }
56
+
57
+ /* === Overflow === */
58
+ .overflow-auto {
59
+ overflow: auto;
60
+ }
61
+
62
+ .overflow-hidden {
63
+ overflow: hidden;
64
+ }
65
+
66
+ .overflow-scroll {
67
+ overflow: scroll;
68
+ }
69
+
70
+ /* === Position === */
71
+ .absolute {
72
+ position: absolute;
73
+ }
74
+
75
+ .fixed {
76
+ position: fixed;
77
+ }
78
+
79
+ .static {
80
+ position: static;
81
+ }
82
+
83
+ .sticky {
84
+ position: sticky;
85
+ }
86
+
87
+ .relative {
88
+ position: relative;
89
+ }
90
+
91
+ /* === Top, end, bottom, start === */
92
+ .-bottom-xs {
93
+ bottom: calc(var(--lumo-space-xs) / -1);
94
+ }
95
+
96
+ .-bottom-s {
97
+ bottom: calc(var(--lumo-space-s) / -1);
98
+ }
99
+
100
+ .-bottom-m {
101
+ bottom: calc(var(--lumo-space-m) / -1);
102
+ }
103
+
104
+ .-bottom-l {
105
+ bottom: calc(var(--lumo-space-l) / -1);
106
+ }
107
+
108
+ .-bottom-xl {
109
+ bottom: calc(var(--lumo-space-xl) / -1);
110
+ }
111
+
112
+ .-bottom-full {
113
+ bottom: -100%;
114
+ }
115
+
116
+ .bottom-0 {
117
+ bottom: 0;
118
+ }
119
+
120
+ .bottom-xs {
121
+ bottom: var(--lumo-space-xs);
122
+ }
123
+
124
+ .bottom-s {
125
+ bottom: var(--lumo-space-s);
126
+ }
127
+
128
+ .bottom-m {
129
+ bottom: var(--lumo-space-m);
130
+ }
131
+
132
+ .bottom-l {
133
+ bottom: var(--lumo-space-l);
134
+ }
135
+
136
+ .bottom-xl {
137
+ bottom: var(--lumo-space-xl);
138
+ }
139
+
140
+ .bottom-auto {
141
+ bottom: auto;
142
+ }
143
+
144
+ .bottom-full {
145
+ bottom: 100%;
146
+ }
147
+
148
+ .-end-xs {
149
+ inset-inline-end: calc(var(--lumo-space-xs) / -1);
150
+ }
151
+
152
+ .-end-s {
153
+ inset-inline-end: calc(var(--lumo-space-s) / -1);
154
+ }
155
+
156
+ .-end-m {
157
+ inset-inline-end: calc(var(--lumo-space-m) / -1);
158
+ }
159
+
160
+ .-end-l {
161
+ inset-inline-end: calc(var(--lumo-space-l) / -1);
162
+ }
163
+
164
+ .-end-xl {
165
+ inset-inline-end: calc(var(--lumo-space-xl) / -1);
166
+ }
167
+
168
+ .-end-full {
169
+ inset-inline-end: -100%;
170
+ }
171
+
172
+ .end-0 {
173
+ inset-inline-end: 0;
174
+ }
175
+
176
+ .end-xs {
177
+ inset-inline-end: var(--lumo-space-xs);
178
+ }
179
+
180
+ .end-s {
181
+ inset-inline-end: var(--lumo-space-s);
182
+ }
183
+
184
+ .end-m {
185
+ inset-inline-end: var(--lumo-space-m);
186
+ }
187
+
188
+ .end-l {
189
+ inset-inline-end: var(--lumo-space-l);
190
+ }
191
+
192
+ .end-xl {
193
+ inset-inline-end: var(--lumo-space-xl);
194
+ }
195
+
196
+ .end-auto {
197
+ inset-inline-end: auto;
198
+ }
199
+
200
+ .end-full {
201
+ inset-inline-end: 100%;
202
+ }
203
+
204
+ .-start-xs {
205
+ inset-inline-start: calc(var(--lumo-space-xs) / -1);
206
+ }
207
+
208
+ .-start-s {
209
+ inset-inline-start: calc(var(--lumo-space-s) / -1);
210
+ }
211
+
212
+ .-start-m {
213
+ inset-inline-start: calc(var(--lumo-space-m) / -1);
214
+ }
19
215
 
20
- /* === Display === */
21
- .block {
216
+ .-start-l {
217
+ inset-inline-start: calc(var(--lumo-space-l) / -1);
218
+ }
219
+
220
+ .-start-xl {
221
+ inset-inline-start: calc(var(--lumo-space-xl) / -1);
222
+ }
223
+
224
+ .-start-full {
225
+ inset-inline-start: -100%;
226
+ }
227
+
228
+ .start-0 {
229
+ inset-inline-start: 0;
230
+ }
231
+
232
+ .start-xs {
233
+ inset-inline-start: var(--lumo-space-xs);
234
+ }
235
+
236
+ .start-s {
237
+ inset-inline-start: var(--lumo-space-s);
238
+ }
239
+
240
+ .start-m {
241
+ inset-inline-start: var(--lumo-space-m);
242
+ }
243
+
244
+ .start-l {
245
+ inset-inline-start: var(--lumo-space-l);
246
+ }
247
+
248
+ .start-xl {
249
+ inset-inline-start: var(--lumo-space-xl);
250
+ }
251
+
252
+ .start-auto {
253
+ inset-inline-start: auto;
254
+ }
255
+
256
+ .start-full {
257
+ inset-inline-start: 100%;
258
+ }
259
+
260
+ .-top-xs {
261
+ top: calc(var(--lumo-space-xs) / -1);
262
+ }
263
+
264
+ .-top-s {
265
+ top: calc(var(--lumo-space-s) / -1);
266
+ }
267
+
268
+ .-top-m {
269
+ top: calc(var(--lumo-space-m) / -1);
270
+ }
271
+
272
+ .-top-l {
273
+ top: calc(var(--lumo-space-l) / -1);
274
+ }
275
+
276
+ .-top-xl {
277
+ top: calc(var(--lumo-space-xl) / -1);
278
+ }
279
+
280
+ .-top-full {
281
+ top: -100%;
282
+ }
283
+
284
+ .top-0 {
285
+ top: 0;
286
+ }
287
+
288
+ .top-xs {
289
+ top: var(--lumo-space-xs);
290
+ }
291
+
292
+ .top-s {
293
+ top: var(--lumo-space-s);
294
+ }
295
+
296
+ .top-m {
297
+ top: var(--lumo-space-m);
298
+ }
299
+
300
+ .top-l {
301
+ top: var(--lumo-space-l);
302
+ }
303
+
304
+ .top-xl {
305
+ top: var(--lumo-space-xl);
306
+ }
307
+
308
+ .top-auto {
309
+ top: auto;
310
+ }
311
+
312
+ .top-full {
313
+ top: 100%;
314
+ }
315
+
316
+ /* === Visibility === */
317
+ .invisible {
318
+ visibility: hidden;
319
+ }
320
+
321
+ .visible {
322
+ visibility: visible;
323
+ }
324
+
325
+ /* === Z-index === */
326
+ .z-0 {
327
+ z-index: 0;
328
+ }
329
+
330
+ .z-10 {
331
+ z-index: 10;
332
+ }
333
+
334
+ .z-20 {
335
+ z-index: 20;
336
+ }
337
+
338
+ .z-30 {
339
+ z-index: 30;
340
+ }
341
+
342
+ .z-40 {
343
+ z-index: 40;
344
+ }
345
+
346
+ .z-50 {
347
+ z-index: 50;
348
+ }
349
+
350
+ .z-auto {
351
+ z-index: auto;
352
+ }
353
+
354
+ /* === Responsive design === */
355
+ @media (min-width: 640px) {
356
+ /* Display */
357
+ .sm\:block {
22
358
  display: block;
23
359
  }
24
- .flex {
360
+
361
+ .sm\:flex {
25
362
  display: flex;
26
363
  }
27
- .grid {
364
+
365
+ .sm\:grid {
28
366
  display: grid;
29
367
  }
30
- .hidden {
368
+
369
+ .sm\:hidden {
31
370
  display: none;
32
371
  }
33
- .inline {
372
+
373
+ .sm\:inline {
34
374
  display: inline;
35
375
  }
36
- .inline-block {
376
+
377
+ .sm\:inline-block {
37
378
  display: inline-block;
38
379
  }
39
- .inline-flex {
380
+
381
+ .sm\:inline-flex {
40
382
  display: inline-flex;
41
383
  }
42
- .inline-grid {
43
- display: inline-grid;
44
- }
45
384
 
46
- /* === Overflow === */
47
- .overflow-auto {
48
- overflow: auto;
49
- }
50
- .overflow-hidden {
51
- overflow: hidden;
52
- }
53
- .overflow-scroll {
54
- overflow: scroll;
385
+ .sm\:inline-grid {
386
+ display: inline-grid;
55
387
  }
56
388
 
57
- /* === Position === */
58
- .absolute {
389
+ /* Position */
390
+ .sm\:absolute {
59
391
  position: absolute;
60
392
  }
61
- .fixed {
393
+
394
+ .sm\:fixed {
62
395
  position: fixed;
63
396
  }
64
- .static {
65
- position: static;
66
- }
67
- .sticky {
68
- position: sticky;
69
- }
70
- .relative {
397
+
398
+ .sm\:relative {
71
399
  position: relative;
72
400
  }
73
401
 
74
- /* === Top, end, bottom, start === */
75
- .-bottom-xs {
76
- bottom: calc(var(--lumo-space-xs) / -1);
77
- }
78
- .-bottom-s {
79
- bottom: calc(var(--lumo-space-s) / -1);
80
- }
81
- .-bottom-m {
82
- bottom: calc(var(--lumo-space-m) / -1);
402
+ .sm\:static {
403
+ position: static;
83
404
  }
84
- .-bottom-l {
85
- bottom: calc(var(--lumo-space-l) / -1);
405
+
406
+ .sm\:sticky {
407
+ position: sticky;
86
408
  }
87
- .-bottom-xl {
88
- bottom: calc(var(--lumo-space-xl) / -1);
409
+ }
410
+ @media (min-width: 768px) {
411
+ /* Display */
412
+ .md\:block {
413
+ display: block;
89
414
  }
90
- .-bottom-full {
91
- bottom: -100%;
415
+
416
+ .md\:flex {
417
+ display: flex;
92
418
  }
93
- .bottom-0 {
94
- bottom: 0;
419
+
420
+ .md\:grid {
421
+ display: grid;
95
422
  }
96
- .bottom-xs {
97
- bottom: var(--lumo-space-xs);
423
+
424
+ .md\:hidden {
425
+ display: none;
98
426
  }
99
- .bottom-s {
100
- bottom: var(--lumo-space-s);
427
+
428
+ .md\:inline {
429
+ display: inline;
101
430
  }
102
- .bottom-m {
103
- bottom: var(--lumo-space-m);
431
+
432
+ .md\:inline-block {
433
+ display: inline-block;
104
434
  }
105
- .bottom-l {
106
- bottom: var(--lumo-space-l);
435
+
436
+ .md\:inline-flex {
437
+ display: inline-flex;
107
438
  }
108
- .bottom-xl {
109
- bottom: var(--lumo-space-xl);
439
+
440
+ .md\:inline-grid {
441
+ display: inline-grid;
110
442
  }
111
- .bottom-auto {
112
- bottom: auto;
443
+
444
+ /* Position */
445
+ .md\:absolute {
446
+ position: absolute;
113
447
  }
114
- .bottom-full {
115
- bottom: 100%;
448
+
449
+ .md\:fixed {
450
+ position: fixed;
116
451
  }
117
452
 
118
- .-end-xs {
119
- inset-inline-end: calc(var(--lumo-space-xs) / -1);
453
+ .md\:relative {
454
+ position: relative;
120
455
  }
121
- .-end-s {
122
- inset-inline-end: calc(var(--lumo-space-s) / -1);
456
+
457
+ .md\:static {
458
+ position: static;
123
459
  }
124
- .-end-m {
125
- inset-inline-end: calc(var(--lumo-space-m) / -1);
460
+
461
+ .md\:sticky {
462
+ position: sticky;
126
463
  }
127
- .-end-l {
128
- inset-inline-end: calc(var(--lumo-space-l) / -1);
464
+ }
465
+ @media (min-width: 1024px) {
466
+ /* Display */
467
+ .lg\:block {
468
+ display: block;
129
469
  }
130
- .-end-xl {
131
- inset-inline-end: calc(var(--lumo-space-xl) / -1);
470
+
471
+ .lg\:flex {
472
+ display: flex;
132
473
  }
133
- .-end-full {
134
- inset-inline-end: -100%;
474
+
475
+ .lg\:grid {
476
+ display: grid;
135
477
  }
136
- .end-0 {
137
- inset-inline-end: 0;
478
+
479
+ .lg\:hidden {
480
+ display: none;
138
481
  }
139
- .end-xs {
140
- inset-inline-end: var(--lumo-space-xs);
482
+
483
+ .lg\:inline {
484
+ display: inline;
141
485
  }
142
- .end-s {
143
- inset-inline-end: var(--lumo-space-s);
486
+
487
+ .lg\:inline-block {
488
+ display: inline-block;
144
489
  }
145
- .end-m {
146
- inset-inline-end: var(--lumo-space-m);
490
+
491
+ .lg\:inline-flex {
492
+ display: inline-flex;
147
493
  }
148
- .end-l {
149
- inset-inline-end: var(--lumo-space-l);
494
+
495
+ .lg\:inline-grid {
496
+ display: inline-grid;
150
497
  }
151
- .end-xl {
152
- inset-inline-end: var(--lumo-space-xl);
498
+
499
+ /* Position */
500
+ .lg\:absolute {
501
+ position: absolute;
153
502
  }
154
- .end-auto {
155
- inset-inline-end: auto;
503
+
504
+ .lg\:fixed {
505
+ position: fixed;
156
506
  }
157
- .end-full {
158
- inset-inline-end: 100%;
507
+
508
+ .lg\:relative {
509
+ position: relative;
159
510
  }
160
511
 
161
- .-start-xs {
162
- inset-inline-start: calc(var(--lumo-space-xs) / -1);
512
+ .lg\:static {
513
+ position: static;
163
514
  }
164
- .-start-s {
165
- inset-inline-start: calc(var(--lumo-space-s) / -1);
515
+
516
+ .lg\:sticky {
517
+ position: sticky;
166
518
  }
167
- .-start-m {
168
- inset-inline-start: calc(var(--lumo-space-m) / -1);
519
+ }
520
+ @media (min-width: 1280px) {
521
+ /* Display */
522
+ .xl\:block {
523
+ display: block;
169
524
  }
170
- .-start-l {
171
- inset-inline-start: calc(var(--lumo-space-l) / -1);
525
+
526
+ .xl\:flex {
527
+ display: flex;
172
528
  }
173
- .-start-xl {
174
- inset-inline-start: calc(var(--lumo-space-xl) / -1);
529
+
530
+ .xl\:grid {
531
+ display: grid;
175
532
  }
176
- .-start-full {
177
- inset-inline-start: -100%;
533
+
534
+ .xl\:hidden {
535
+ display: none;
178
536
  }
179
- .start-0 {
180
- inset-inline-start: 0;
537
+
538
+ .xl\:inline {
539
+ display: inline;
181
540
  }
182
- .start-xs {
183
- inset-inline-start: var(--lumo-space-xs);
541
+
542
+ .xl\:inline-block {
543
+ display: inline-block;
184
544
  }
185
- .start-s {
186
- inset-inline-start: var(--lumo-space-s);
545
+
546
+ .xl\:inline-flex {
547
+ display: inline-flex;
187
548
  }
188
- .start-m {
189
- inset-inline-start: var(--lumo-space-m);
549
+
550
+ .xl\:inline-grid {
551
+ display: inline-grid;
190
552
  }
191
- .start-l {
192
- inset-inline-start: var(--lumo-space-l);
553
+
554
+ /* Position */
555
+ .xl\:absolute {
556
+ position: absolute;
193
557
  }
194
- .start-xl {
195
- inset-inline-start: var(--lumo-space-xl);
558
+
559
+ .xl\:fixed {
560
+ position: fixed;
196
561
  }
197
- .start-auto {
198
- inset-inline-start: auto;
562
+
563
+ .xl\:relative {
564
+ position: relative;
199
565
  }
200
- .start-full {
201
- inset-inline-start: 100%;
566
+
567
+ .xl\:static {
568
+ position: static;
202
569
  }
203
570
 
204
- .-top-xs {
205
- top: calc(var(--lumo-space-xs) / -1);
571
+ .xl\:sticky {
572
+ position: sticky;
206
573
  }
207
- .-top-s {
208
- top: calc(var(--lumo-space-s) / -1);
574
+ }
575
+ @media (min-width: 1536px) {
576
+ /* Display */
577
+ .\32xl\:block {
578
+ display: block;
209
579
  }
210
- .-top-m {
211
- top: calc(var(--lumo-space-m) / -1);
580
+
581
+ .\32xl\:flex {
582
+ display: flex;
212
583
  }
213
- .-top-l {
214
- top: calc(var(--lumo-space-l) / -1);
584
+
585
+ .\32xl\:grid {
586
+ display: grid;
215
587
  }
216
- .-top-xl {
217
- top: calc(var(--lumo-space-xl) / -1);
588
+
589
+ .\32xl\:hidden {
590
+ display: none;
218
591
  }
219
- .-top-full {
220
- top: -100%;
592
+
593
+ .\32xl\:inline {
594
+ display: inline;
221
595
  }
222
- .top-0 {
223
- top: 0;
596
+
597
+ .\32xl\:inline-block {
598
+ display: inline-block;
224
599
  }
225
- .top-xs {
226
- top: var(--lumo-space-xs);
600
+
601
+ .\32xl\:inline-flex {
602
+ display: inline-flex;
227
603
  }
228
- .top-s {
229
- top: var(--lumo-space-s);
604
+
605
+ .\32xl\:inline-grid {
606
+ display: inline-grid;
230
607
  }
231
- .top-m {
232
- top: var(--lumo-space-m);
608
+
609
+ /* Position */
610
+ .\32xl\:absolute {
611
+ position: absolute;
233
612
  }
234
- .top-l {
235
- top: var(--lumo-space-l);
613
+
614
+ .\32xl\:fixed {
615
+ position: fixed;
236
616
  }
237
- .top-xl {
238
- top: var(--lumo-space-xl);
617
+
618
+ .\32xl\:relative {
619
+ position: relative;
239
620
  }
240
- .top-auto {
241
- top: auto;
621
+
622
+ .\32xl\:static {
623
+ position: static;
242
624
  }
243
- .top-full {
244
- top: 100%;
245
- }
246
-
247
- /* === Visibility === */
248
- .invisible {
249
- visibility: hidden;
250
- }
251
- .visible {
252
- visibility: visible;
253
- }
254
-
255
- /* === Z-index === */
256
- .z-0 {
257
- z-index: 0;
258
- }
259
- .z-10 {
260
- z-index: 10;
261
- }
262
- .z-20 {
263
- z-index: 20;
264
- }
265
- .z-30 {
266
- z-index: 30;
267
- }
268
- .z-40 {
269
- z-index: 40;
270
- }
271
- .z-50 {
272
- z-index: 50;
273
- }
274
- .z-auto {
275
- z-index: auto;
276
- }
277
-
278
- /* === Responsive design === */
279
- @media (min-width: 640px) {
280
- /* Display */
281
- .sm\\:block {
282
- display: block;
283
- }
284
- .sm\\:flex {
285
- display: flex;
286
- }
287
- .sm\\:grid {
288
- display: grid;
289
- }
290
- .sm\\:hidden {
291
- display: none;
292
- }
293
- .sm\\:inline {
294
- display: inline;
295
- }
296
- .sm\\:inline-block {
297
- display: inline-block;
298
- }
299
- .sm\\:inline-flex {
300
- display: inline-flex;
301
- }
302
- .sm\\:inline-grid {
303
- display: inline-grid;
304
- }
305
-
306
- /* Position */
307
- .sm\\:absolute {
308
- position: absolute;
309
- }
310
- .sm\\:fixed {
311
- position: fixed;
312
- }
313
- .sm\\:relative {
314
- position: relative;
315
- }
316
- .sm\\:static {
317
- position: static;
318
- }
319
- .sm\\:sticky {
320
- position: sticky;
321
- }
322
- }
323
- @media (min-width: 768px) {
324
- /* Display */
325
- .md\\:block {
326
- display: block;
327
- }
328
- .md\\:flex {
329
- display: flex;
330
- }
331
- .md\\:grid {
332
- display: grid;
333
- }
334
- .md\\:hidden {
335
- display: none;
336
- }
337
- .md\\:inline {
338
- display: inline;
339
- }
340
- .md\\:inline-block {
341
- display: inline-block;
342
- }
343
- .md\\:inline-flex {
344
- display: inline-flex;
345
- }
346
- .md\\:inline-grid {
347
- display: inline-grid;
348
- }
349
-
350
- /* Position */
351
- .md\\:absolute {
352
- position: absolute;
353
- }
354
- .md\\:fixed {
355
- position: fixed;
356
- }
357
- .md\\:relative {
358
- position: relative;
359
- }
360
- .md\\:static {
361
- position: static;
362
- }
363
- .md\\:sticky {
364
- position: sticky;
365
- }
366
- }
367
- @media (min-width: 1024px) {
368
- /* Display */
369
- .lg\\:block {
370
- display: block;
371
- }
372
- .lg\\:flex {
373
- display: flex;
374
- }
375
- .lg\\:grid {
376
- display: grid;
377
- }
378
- .lg\\:hidden {
379
- display: none;
380
- }
381
- .lg\\:inline {
382
- display: inline;
383
- }
384
- .lg\\:inline-block {
385
- display: inline-block;
386
- }
387
- .lg\\:inline-flex {
388
- display: inline-flex;
389
- }
390
- .lg\\:inline-grid {
391
- display: inline-grid;
392
- }
393
-
394
- /* Position */
395
- .lg\\:absolute {
396
- position: absolute;
397
- }
398
- .lg\\:fixed {
399
- position: fixed;
400
- }
401
- .lg\\:relative {
402
- position: relative;
403
- }
404
- .lg\\:static {
405
- position: static;
406
- }
407
- .lg\\:sticky {
408
- position: sticky;
409
- }
410
- }
411
- @media (min-width: 1280px) {
412
- /* Display */
413
- .xl\\:block {
414
- display: block;
415
- }
416
- .xl\\:flex {
417
- display: flex;
418
- }
419
- .xl\\:grid {
420
- display: grid;
421
- }
422
- .xl\\:hidden {
423
- display: none;
424
- }
425
- .xl\\:inline {
426
- display: inline;
427
- }
428
- .xl\\:inline-block {
429
- display: inline-block;
430
- }
431
- .xl\\:inline-flex {
432
- display: inline-flex;
433
- }
434
- .xl\\:inline-grid {
435
- display: inline-grid;
436
- }
437
-
438
- /* Position */
439
- .xl\\:absolute {
440
- position: absolute;
441
- }
442
- .xl\\:fixed {
443
- position: fixed;
444
- }
445
- .xl\\:relative {
446
- position: relative;
447
- }
448
- .xl\\:static {
449
- position: static;
450
- }
451
- .xl\\:sticky {
452
- position: sticky;
453
- }
454
- }
455
- @media (min-width: 1536px) {
456
- /* Display */
457
- .\\32xl\\:block {
458
- display: block;
459
- }
460
- .\\32xl\\:flex {
461
- display: flex;
462
- }
463
- .\\32xl\\:grid {
464
- display: grid;
465
- }
466
- .\\32xl\\:hidden {
467
- display: none;
468
- }
469
- .\\32xl\\:inline {
470
- display: inline;
471
- }
472
- .\\32xl\\:inline-block {
473
- display: inline-block;
474
- }
475
- .\\32xl\\:inline-flex {
476
- display: inline-flex;
477
- }
478
- .\\32xl\\:inline-grid {
479
- display: inline-grid;
480
- }
481
-
482
- /* Position */
483
- .\\32xl\\:absolute {
484
- position: absolute;
485
- }
486
- .\\32xl\\:fixed {
487
- position: fixed;
488
- }
489
- .\\32xl\\:relative {
490
- position: relative;
491
- }
492
- .\\32xl\\:static {
493
- position: static;
494
- }
495
- .\\32xl\\:sticky {
496
- position: sticky;
497
- }
625
+
626
+ .\32xl\:sticky {
627
+ position: sticky;
498
628
  }
629
+ }