@digigov/css 2.0.0-rc.7 → 2.0.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.
Files changed (145) hide show
  1. package/dist/base/index.css +3 -3
  2. package/dist/base.js +1 -1
  3. package/dist/components.js +1 -1
  4. package/dist/digigov.css +5 -5
  5. package/dist/utilities/index.css +1 -1
  6. package/dist/utilities.js +1 -1
  7. package/index.js +99 -69
  8. package/package.json +20 -20
  9. package/postcss.config.js +4 -3
  10. package/src/base/index.css +1 -0
  11. package/src/base/index.native.css +0 -0
  12. package/src/base/postcss.config.js +11 -10
  13. package/src/base/tailwind.config.js +4 -11
  14. package/src/components/accordion.common.css +29 -0
  15. package/src/components/accordion.css +39 -12
  16. package/src/components/accordion.native.css +27 -0
  17. package/src/components/admin-header.css +1 -19
  18. package/src/components/admin-layout.css +6 -15
  19. package/src/components/autocomplete.css +7 -5
  20. package/src/components/blockquote.common.css +14 -0
  21. package/src/components/blockquote.css +9 -0
  22. package/src/components/blockquote.native.css +14 -0
  23. package/src/components/breadcrumbs.css +9 -2
  24. package/src/components/button.common.css +62 -0
  25. package/src/components/button.css +13 -28
  26. package/src/components/button.native.css +55 -0
  27. package/src/components/card.common.css +33 -0
  28. package/src/components/card.css +36 -15
  29. package/src/components/card.native.css +29 -0
  30. package/src/components/checkboxes.common.css +16 -0
  31. package/src/components/checkboxes.css +6 -8
  32. package/src/components/checkboxes.native.css +27 -0
  33. package/src/components/chip.common.css +19 -0
  34. package/src/components/chip.css +5 -4
  35. package/src/components/chip.native.css +15 -0
  36. package/src/components/code.css +129 -0
  37. package/src/components/copy-to-clipboard.css +1 -1
  38. package/src/components/copy-to-clipboard.native.css +26 -0
  39. package/src/components/details.common.css +26 -0
  40. package/src/components/details.css +10 -9
  41. package/src/components/details.native.css +34 -0
  42. package/src/components/drawer.css +21 -4
  43. package/src/components/dropdown.common.css +23 -0
  44. package/src/components/dropdown.css +7 -9
  45. package/src/components/dropdown.native.css +27 -0
  46. package/src/components/fillable.css +1 -1
  47. package/src/components/filter.css +72 -29
  48. package/src/components/footer.css +8 -7
  49. package/src/components/form.common.css +81 -0
  50. package/src/components/form.css +65 -33
  51. package/src/components/form.native.css +182 -0
  52. package/src/components/header.common.css +35 -0
  53. package/src/components/header.css +29 -20
  54. package/src/components/header.native.css +29 -0
  55. package/src/components/hidden.css +11 -11
  56. package/src/components/index.css +34 -31
  57. package/src/components/kitchensink.css +2 -2
  58. package/src/components/layout.common.css +36 -0
  59. package/src/components/layout.css +12 -11
  60. package/src/components/layout.native.css +40 -0
  61. package/src/components/loader.common.css +7 -0
  62. package/src/components/loader.css +3 -1
  63. package/src/components/loader.native.css +5 -0
  64. package/src/components/masthead.css +1 -1
  65. package/src/components/misc.css +25 -1
  66. package/src/components/modal.common.css +16 -0
  67. package/src/components/modal.css +27 -14
  68. package/src/components/modal.native.css +18 -0
  69. package/src/components/nav.common.css +22 -0
  70. package/src/components/nav.css +8 -7
  71. package/src/components/nav.native.css +39 -0
  72. package/src/components/notification-banner.common.css +46 -0
  73. package/src/components/notification-banner.css +27 -7
  74. package/src/components/notification-banner.native.css +42 -0
  75. package/src/components/pagination.css +19 -3
  76. package/src/components/panel.common.css +30 -0
  77. package/src/components/panel.css +6 -15
  78. package/src/components/panel.native.css +26 -0
  79. package/src/components/phase-banner.common.css +23 -0
  80. package/src/components/phase-banner.css +7 -6
  81. package/src/components/phase-banner.native.css +30 -0
  82. package/src/components/postcss.config.js +7 -6
  83. package/src/components/radios.common.css +16 -0
  84. package/src/components/radios.css +5 -11
  85. package/src/components/radios.native.css +23 -0
  86. package/src/components/skeleton.common.css +20 -0
  87. package/src/components/skeleton.css +82 -0
  88. package/src/components/skeleton.native.css +53 -0
  89. package/src/components/stack.common.css +67 -0
  90. package/src/components/stack.css +25 -23
  91. package/src/components/stack.native.css +68 -0
  92. package/src/components/stepnav.css +2 -2
  93. package/src/components/summary-list.common.css +102 -0
  94. package/src/components/summary-list.css +103 -20
  95. package/src/components/summary-list.native.css +97 -0
  96. package/src/components/svg-icons.common.css +56 -0
  97. package/src/components/svg-icons.css +1 -1
  98. package/src/components/svg-icons.native.css +54 -0
  99. package/src/components/table.css +63 -19
  100. package/src/components/tabs.css +47 -62
  101. package/src/components/task-list.css +12 -7
  102. package/src/components/test.css +7 -0
  103. package/src/components/timeline.css +8 -7
  104. package/src/components/typography.common.css +135 -0
  105. package/src/components/typography.css +51 -108
  106. package/src/components/typography.native.css +128 -0
  107. package/src/components/warning-text.common.css +23 -0
  108. package/src/components/warning-text.css +10 -7
  109. package/src/components/warning-text.native.css +22 -0
  110. package/src/index.native.css +26 -0
  111. package/src/utilities/gap.css +141 -0
  112. package/src/utilities/index.css +6 -1655
  113. package/src/utilities/index.native.css +6 -0
  114. package/src/utilities/layout.css +231 -0
  115. package/src/utilities/layout.native.css +278 -0
  116. package/src/utilities/margin.css +4299 -0
  117. package/src/utilities/padding.css +4299 -0
  118. package/src/utilities/postcss.config.js +7 -6
  119. package/src/utilities/print.css +11 -0
  120. package/src/utilities/utilities.css +3 -1661
  121. package/tailwind.config.js +102 -105
  122. package/theming.js +121 -0
  123. package/defaultTheme/accordion.json +0 -16
  124. package/defaultTheme/back-to-top.json +0 -27
  125. package/defaultTheme/brandConfig.json +0 -145
  126. package/defaultTheme/breadcrumbs.json +0 -8
  127. package/defaultTheme/button.json +0 -90
  128. package/defaultTheme/card.json +0 -23
  129. package/defaultTheme/form.json +0 -30
  130. package/defaultTheme/globals.json +0 -81
  131. package/defaultTheme/index.js +0 -27
  132. package/defaultTheme/layout.json +0 -55
  133. package/defaultTheme/misc.json +0 -68
  134. package/defaultTheme/panel.json +0 -48
  135. package/defaultTheme/phase-banner.json +0 -8
  136. package/defaultTheme/radios.json +0 -8
  137. package/defaultTheme/summary-list.json +0 -8
  138. package/defaultTheme/typography.json +0 -295
  139. package/src/pages/admin-filtering-data.js +0 -160
  140. package/src/pages/admin.js +0 -61
  141. package/src/pages/dropdown.js +0 -249
  142. package/src/pages/form.js +0 -400
  143. package/src/pages/pagination.js +0 -124
  144. package/src/pages/table.js +0 -308
  145. package/themes.plugin.js +0 -148
@@ -1,1661 +1,3 @@
1
- @tailwind utilities;
2
- @layer utilities {
3
- .ds-m-0 {
4
- @apply m-0 !important;
5
- }
6
- .ds-m-1 {
7
- @apply m-1 !important;
8
- }
9
- .ds-m-2 {
10
- @apply m-2 !important;
11
- }
12
- .ds-m-3 {
13
- @apply m-3 !important;
14
- }
15
- .ds-m-4 {
16
- @apply m-4 !important;
17
- }
18
- .ds-m-5 {
19
- @apply m-5 !important;
20
- }
21
- .ds-m-6 {
22
- @apply m-6 !important;
23
- }
24
- .ds-m-7 {
25
- @apply m-7 !important;
26
- }
27
- .ds-m-8 {
28
- @apply m-8 !important;
29
- }
30
- .ds-m-9 {
31
- @apply m-9 !important;
32
- }
33
- .ds-m-10 {
34
- @apply m-10 !important;
35
- }
36
- .ds-m-11 {
37
- @apply m-11 !important;
38
- }
39
- .ds-m-12 {
40
- @apply m-12 !important;
41
- }
42
- .ds-m-14 {
43
- @apply m-14 !important;
44
- }
45
- .ds-m-16 {
46
- @apply m-16 !important;
47
- }
48
- .ds-m-20 {
49
- @apply m-20 !important;
50
- }
51
- .ds-m-24 {
52
- @apply m-24 !important;
53
- }
54
- .ds-m-28 {
55
- @apply m-28 !important;
56
- }
57
- .ds-m-32 {
58
- @apply m-32 !important;
59
- }
60
- .ds-m-36 {
61
- @apply m-36 !important;
62
- }
63
- .ds-m-40 {
64
- @apply m-40 !important;
65
- }
66
- .ds-m-44 {
67
- @apply m-44 !important;
68
- }
69
- .ds-m-48 {
70
- @apply m-48 !important;
71
- }
72
- .ds-m-52 {
73
- @apply m-52 !important;
74
- }
75
- .ds-m-56 {
76
- @apply m-56 !important;
77
- }
78
- .ds-m-60 {
79
- @apply m-60 !important;
80
- }
81
- .ds-m-64 {
82
- @apply m-64 !important;
83
- }
84
- .ds-m-72 {
85
- @apply m-72 !important;
86
- }
87
- .ds-m-80 {
88
- @apply m-80 !important;
89
- }
90
- .ds-m-96 {
91
- @apply m-96 !important;
92
- }
93
- .ds-m-px {
94
- @apply m-px !important;
95
- }
96
- .ds-m-0\.5 {
97
- @apply m-0.5 !important;
98
- }
99
- .ds-m-1\.5 {
100
- @apply m-1.5 !important;
101
- }
102
- .ds-m-2\.5 {
103
- @apply m-2.5 !important;
104
- }
105
- .ds-m-3\.5 {
106
- @apply m-3.5 !important;
107
- }
108
- .ds-mt-0 {
109
- @apply mt-0 !important;
110
- }
111
- .ds-mt-1 {
112
- @apply mt-1 !important;
113
- }
114
- .ds-mt-2 {
115
- @apply mt-2 !important;
116
- }
117
- .ds-mt-3 {
118
- @apply mt-3 !important;
119
- }
120
- .ds-mt-4 {
121
- @apply mt-4 !important;
122
- }
123
- .ds-mt-5 {
124
- @apply mt-5 !important;
125
- }
126
- .ds-mt-6 {
127
- @apply mt-6 !important;
128
- }
129
- .ds-mt-7 {
130
- @apply mt-7 !important;
131
- }
132
- .ds-mt-8 {
133
- @apply mt-8 !important;
134
- }
135
- .ds-mt-9 {
136
- @apply mt-9 !important;
137
- }
138
- .ds-mt-10 {
139
- @apply mt-10 !important;
140
- }
141
- .ds-mt-11 {
142
- @apply mt-11 !important;
143
- }
144
- .ds-mt-12 {
145
- @apply mt-12 !important;
146
- }
147
- .ds-mt-14 {
148
- @apply mt-14 !important;
149
- }
150
- .ds-mt-16 {
151
- @apply mt-16 !important;
152
- }
153
- .ds-mt-20 {
154
- @apply mt-20 !important;
155
- }
156
- .ds-mt-24 {
157
- @apply mt-24 !important;
158
- }
159
- .ds-mt-28 {
160
- @apply mt-28 !important;
161
- }
162
- .ds-mt-32 {
163
- @apply mt-32 !important;
164
- }
165
- .ds-mt-36 {
166
- @apply mt-36 !important;
167
- }
168
- .ds-mt-40 {
169
- @apply mt-40 !important;
170
- }
171
- .ds-mt-44 {
172
- @apply mt-44 !important;
173
- }
174
- .ds-mt-48 {
175
- @apply mt-48 !important;
176
- }
177
- .ds-mt-52 {
178
- @apply mt-52 !important;
179
- }
180
- .ds-mt-56 {
181
- @apply mt-56 !important;
182
- }
183
- .ds-mt-60 {
184
- @apply mt-60 !important;
185
- }
186
- .ds-mt-64 {
187
- @apply mt-64 !important;
188
- }
189
- .ds-mt-72 {
190
- @apply mt-72 !important;
191
- }
192
- .ds-mt-80 {
193
- @apply mt-80 !important;
194
- }
195
- .ds-mt-96 {
196
- @apply mt-96 !important;
197
- }
198
- .ds-mt-px {
199
- @apply mt-px !important;
200
- }
201
- .ds-mx-0\.5 {
202
- @apply mx-0.5 !important;
203
- }
204
- .ds-mx-1\.5 {
205
- @apply mx-1.5 !important;
206
- }
207
- .ds-mx-2\.5 {
208
- @apply mx-2.5 !important;
209
- }
210
- .ds-mx-3\.5 {
211
- @apply mx-3.5 !important;
212
- }
213
- .ds-mt-0\.5 {
214
- @apply mt-0.5 !important;
215
- }
216
- .ds-mt-1\.5 {
217
- @apply mt-1.5 !important;
218
- }
219
- .ds-mt-2\.5 {
220
- @apply mt-2.5 !important;
221
- }
222
- .ds-mt-3\.5 {
223
- @apply mt-3.5 !important;
224
- }
225
- .ds-mr-0 {
226
- @apply mr-0 !important;
227
- }
228
- .ds-mr-1 {
229
- @apply mr-1 !important;
230
- }
231
- .ds-mr-2 {
232
- @apply mr-2 !important;
233
- }
234
- .ds-mr-3 {
235
- @apply mr-3 !important;
236
- }
237
- .ds-mr-4 {
238
- @apply mr-4 !important;
239
- }
240
- .ds-mr-5 {
241
- @apply mr-5 !important;
242
- }
243
- .ds-mr-6 {
244
- @apply mr-6 !important;
245
- }
246
- .ds-mr-7 {
247
- @apply mr-7 !important;
248
- }
249
- .ds-mr-8 {
250
- @apply mr-8 !important;
251
- }
252
- .ds-mr-9 {
253
- @apply mr-9 !important;
254
- }
255
- .ds-mr-10 {
256
- @apply mr-10 !important;
257
- }
258
- .ds-mr-11 {
259
- @apply mr-11 !important;
260
- }
261
- .ds-mr-12 {
262
- @apply mr-12 !important;
263
- }
264
- .ds-mr-14 {
265
- @apply mr-14 !important;
266
- }
267
- .ds-mr-16 {
268
- @apply mr-16 !important;
269
- }
270
- .ds-mr-20 {
271
- @apply mr-20 !important;
272
- }
273
- .ds-mr-24 {
274
- @apply mr-24 !important;
275
- }
276
- .ds-mr-28 {
277
- @apply mr-28 !important;
278
- }
279
- .ds-mr-32 {
280
- @apply mr-32 !important;
281
- }
282
- .ds-mr-36 {
283
- @apply mr-36 !important;
284
- }
285
- .ds-mr-40 {
286
- @apply mr-40 !important;
287
- }
288
- .ds-mr-44 {
289
- @apply mr-44 !important;
290
- }
291
- .ds-mr-48 {
292
- @apply mr-48 !important;
293
- }
294
- .ds-mr-52 {
295
- @apply mr-52 !important;
296
- }
297
- .ds-mr-56 {
298
- @apply mr-56 !important;
299
- }
300
- .ds-mr-60 {
301
- @apply mr-60 !important;
302
- }
303
- .ds-mr-64 {
304
- @apply mr-64 !important;
305
- }
306
- .ds-mr-72 {
307
- @apply mr-72 !important;
308
- }
309
- .ds-mr-80 {
310
- @apply mr-80 !important;
311
- }
312
- .ds-mr-96 {
313
- @apply mr-96 !important;
314
- }
315
- .ds-mr-px {
316
- @apply mr-px !important;
317
- }
318
- .ds-mr-0\.5 {
319
- @apply mr-0.5 !important;
320
- }
321
- .ds-mr-1\.5 {
322
- @apply mr-1.5 !important;
323
- }
324
- .ds-mr-2\.5 {
325
- @apply mr-2.5 !important;
326
- }
327
- .ds-mr-3\.5 {
328
- @apply mr-3.5 !important;
329
- }
330
- .ds-ml-0 {
331
- @apply ml-0 !important;
332
- }
333
- .ds-ml-1 {
334
- @apply ml-1 !important;
335
- }
336
- .ds-ml-2 {
337
- @apply ml-2 !important;
338
- }
339
- .ds-ml-3 {
340
- @apply ml-3 !important;
341
- }
342
- .ds-ml-4 {
343
- @apply ml-4 !important;
344
- }
345
- .ds-ml-5 {
346
- @apply ml-5 !important;
347
- }
348
- .ds-ml-6 {
349
- @apply ml-6 !important;
350
- }
351
- .ds-ml-7 {
352
- @apply ml-7 !important;
353
- }
354
- .ds-ml-8 {
355
- @apply ml-8 !important;
356
- }
357
- .ds-ml-9 {
358
- @apply ml-9 !important;
359
- }
360
- .ds-ml-10 {
361
- @apply ml-10 !important;
362
- }
363
- .ds-ml-11 {
364
- @apply ml-11 !important;
365
- }
366
- .ds-ml-12 {
367
- @apply ml-12 !important;
368
- }
369
- .ds-ml-14 {
370
- @apply ml-14 !important;
371
- }
372
- .ds-ml-16 {
373
- @apply ml-16 !important;
374
- }
375
- .ds-ml-20 {
376
- @apply ml-20 !important;
377
- }
378
- .ds-ml-24 {
379
- @apply ml-24 !important;
380
- }
381
- .ds-ml-28 {
382
- @apply ml-28 !important;
383
- }
384
- .ds-ml-32 {
385
- @apply ml-32 !important;
386
- }
387
- .ds-ml-36 {
388
- @apply ml-36 !important;
389
- }
390
- .ds-ml-40 {
391
- @apply ml-40 !important;
392
- }
393
- .ds-ml-44 {
394
- @apply ml-44 !important;
395
- }
396
- .ds-ml-48 {
397
- @apply ml-48 !important;
398
- }
399
- .ds-ml-52 {
400
- @apply ml-52 !important;
401
- }
402
- .ds-ml-56 {
403
- @apply ml-56 !important;
404
- }
405
- .ds-ml-60 {
406
- @apply ml-60 !important;
407
- }
408
- .ds-ml-64 {
409
- @apply ml-64 !important;
410
- }
411
- .ds-ml-72 {
412
- @apply ml-72 !important;
413
- }
414
- .ds-ml-80 {
415
- @apply ml-80 !important;
416
- }
417
- .ds-ml-96 {
418
- @apply ml-96 !important;
419
- }
420
- .ds-ml-px {
421
- @apply ml-px !important;
422
- }
423
- .ds-ml-0\.5 {
424
- @apply ml-0.5 !important;
425
- }
426
- .ds-ml-1\.5 {
427
- @apply ml-1.5 !important;
428
- }
429
- .ds-ml-2\.5 {
430
- @apply ml-2.5 !important;
431
- }
432
- .ds-ml-3\.5 {
433
- @apply ml-3.5 !important;
434
- }
435
- .ds-mb-0 {
436
- @apply mb-0 !important;
437
- }
438
- .ds-mb-1 {
439
- @apply mb-1 !important;
440
- }
441
- .ds-mb-2 {
442
- @apply mb-2 !important;
443
- }
444
- .ds-mb-3 {
445
- @apply mb-3 !important;
446
- }
447
- .ds-mb-4 {
448
- @apply mb-4 !important;
449
- }
450
- .ds-mb-5 {
451
- @apply mb-5 !important;
452
- }
453
- .ds-mb-6 {
454
- @apply mb-6 !important;
455
- }
456
- .ds-mb-7 {
457
- @apply mb-7 !important;
458
- }
459
- .ds-mb-8 {
460
- @apply mb-8 !important;
461
- }
462
- .ds-mb-9 {
463
- @apply mb-9 !important;
464
- }
465
- .ds-mb-10 {
466
- @apply mb-10 !important;
467
- }
468
- .ds-mb-11 {
469
- @apply mb-11 !important;
470
- }
471
- .ds-mb-12 {
472
- @apply mb-12 !important;
473
- }
474
- .ds-mb-14 {
475
- @apply mb-14 !important;
476
- }
477
- .ds-mb-16 {
478
- @apply mb-16 !important;
479
- }
480
- .ds-mb-20 {
481
- @apply mb-20 !important;
482
- }
483
- .ds-mb-24 {
484
- @apply mb-24 !important;
485
- }
486
- .ds-mb-28 {
487
- @apply mb-28 !important;
488
- }
489
- .ds-mb-32 {
490
- @apply mb-32 !important;
491
- }
492
- .ds-mb-36 {
493
- @apply mb-36 !important;
494
- }
495
- .ds-mb-40 {
496
- @apply mb-40 !important;
497
- }
498
- .ds-mb-44 {
499
- @apply mb-44 !important;
500
- }
501
- .ds-mb-48 {
502
- @apply mb-48 !important;
503
- }
504
- .ds-mb-52 {
505
- @apply mb-52 !important;
506
- }
507
- .ds-mb-56 {
508
- @apply mb-56 !important;
509
- }
510
- .ds-mb-60 {
511
- @apply mb-60 !important;
512
- }
513
- .ds-mb-64 {
514
- @apply mb-64 !important;
515
- }
516
- .ds-mb-72 {
517
- @apply mb-72 !important;
518
- }
519
- .ds-mb-80 {
520
- @apply mb-80 !important;
521
- }
522
- .ds-mb-96 {
523
- @apply mb-96 !important;
524
- }
525
- .ds-mb-px {
526
- @apply mb-px !important;
527
- }
528
- .ds-mb-0\.5 {
529
- @apply mb-0.5 !important;
530
- }
531
- .ds-mb-1\.5 {
532
- @apply mb-1.5 !important;
533
- }
534
- .ds-mb-2\.5 {
535
- @apply mb-2.5 !important;
536
- }
537
- .ds-mb-3\.5 {
538
- @apply mb-3.5 !important;
539
- }
540
- .ds-mx-0 {
541
- @apply mx-0 !important;
542
- }
543
- .ds-mx-1 {
544
- @apply mx-1 !important;
545
- }
546
- .ds-mx-2 {
547
- @apply mx-2 !important;
548
- }
549
- .ds-mx-3 {
550
- @apply mx-3 !important;
551
- }
552
- .ds-mx-4 {
553
- @apply mx-4 !important;
554
- }
555
- .ds-mx-5 {
556
- @apply mx-5 !important;
557
- }
558
- .ds-mx-6 {
559
- @apply mx-6 !important;
560
- }
561
- .ds-mx-7 {
562
- @apply mx-7 !important;
563
- }
564
- .ds-mx-8 {
565
- @apply mx-8 !important;
566
- }
567
- .ds-mx-9 {
568
- @apply mx-9 !important;
569
- }
570
- .ds-mx-10 {
571
- @apply mx-10 !important;
572
- }
573
- .ds-mx-11 {
574
- @apply mx-11 !important;
575
- }
576
- .ds-mx-12 {
577
- @apply mx-12 !important;
578
- }
579
- .ds-mx-14 {
580
- @apply mx-14 !important;
581
- }
582
- .ds-mx-16 {
583
- @apply mx-16 !important;
584
- }
585
- .ds-mx-20 {
586
- @apply mx-20 !important;
587
- }
588
- .ds-mx-24 {
589
- @apply mx-24 !important;
590
- }
591
- .ds-mx-28 {
592
- @apply mx-28 !important;
593
- }
594
- .ds-mx-32 {
595
- @apply mx-32 !important;
596
- }
597
- .ds-mx-36 {
598
- @apply mx-36 !important;
599
- }
600
- .ds-mx-40 {
601
- @apply mx-40 !important;
602
- }
603
- .ds-mx-44 {
604
- @apply mx-44 !important;
605
- }
606
- .ds-mx-48 {
607
- @apply mx-48 !important;
608
- }
609
- .ds-mx-52 {
610
- @apply mx-52 !important;
611
- }
612
- .ds-mx-56 {
613
- @apply mx-56 !important;
614
- }
615
- .ds-mx-60 {
616
- @apply mx-60 !important;
617
- }
618
- .ds-mx-64 {
619
- @apply mx-64 !important;
620
- }
621
- .ds-mx-72 {
622
- @apply mx-72 !important;
623
- }
624
- .ds-mx-80 {
625
- @apply mx-80 !important;
626
- }
627
- .ds-mx-96 {
628
- @apply mx-96 !important;
629
- }
630
- .ds-my-0 {
631
- @apply my-0 !important;
632
- }
633
- .ds-my-1 {
634
- @apply my-1 !important;
635
- }
636
- .ds-my-2 {
637
- @apply my-2 !important;
638
- }
639
- .ds-my-3 {
640
- @apply my-3 !important;
641
- }
642
- .ds-my-4 {
643
- @apply my-4 !important;
644
- }
645
- .ds-my-5 {
646
- @apply my-5 !important;
647
- }
648
- .ds-my-6 {
649
- @apply my-6 !important;
650
- }
651
- .ds-my-7 {
652
- @apply my-7 !important;
653
- }
654
- .ds-my-8 {
655
- @apply my-8 !important;
656
- }
657
- .ds-my-9 {
658
- @apply my-9 !important;
659
- }
660
- .ds-my-10 {
661
- @apply my-10 !important;
662
- }
663
- .ds-my-11 {
664
- @apply my-11 !important;
665
- }
666
- .ds-my-12 {
667
- @apply my-12 !important;
668
- }
669
- .ds-my-14 {
670
- @apply my-14 !important;
671
- }
672
- .ds-my-16 {
673
- @apply my-16 !important;
674
- }
675
- .ds-my-20 {
676
- @apply my-20 !important;
677
- }
678
- .ds-my-24 {
679
- @apply my-24 !important;
680
- }
681
- .ds-my-28 {
682
- @apply my-28 !important;
683
- }
684
- .ds-my-32 {
685
- @apply my-32 !important;
686
- }
687
- .ds-my-36 {
688
- @apply my-36 !important;
689
- }
690
- .ds-my-40 {
691
- @apply my-40 !important;
692
- }
693
- .ds-my-44 {
694
- @apply my-44 !important;
695
- }
696
- .ds-my-48 {
697
- @apply my-48 !important;
698
- }
699
- .ds-my-52 {
700
- @apply my-52 !important;
701
- }
702
- .ds-my-56 {
703
- @apply my-56 !important;
704
- }
705
- .ds-my-60 {
706
- @apply my-60 !important;
707
- }
708
- .ds-my-64 {
709
- @apply my-64 !important;
710
- }
711
- .ds-my-72 {
712
- @apply my-72 !important;
713
- }
714
- .ds-my-80 {
715
- @apply my-80 !important;
716
- }
717
- .ds-my-96 {
718
- @apply my-96 !important;
719
- }
720
- .ds-my-0\.5 {
721
- @apply my-0.5 !important;
722
- }
723
- .ds-my-1\.5 {
724
- @apply my-1.5 !important;
725
- }
726
- .ds-my-2\.5 {
727
- @apply my-2.5 !important;
728
- }
729
- .ds-my-3\.5 {
730
- @apply my-3.5 !important;
731
- }
732
-
733
- .ds-p-0 {
734
- @apply p-0 !important;
735
- }
736
- .ds-p-1 {
737
- @apply p-1 !important;
738
- }
739
- .ds-p-2 {
740
- @apply p-2 !important;
741
- }
742
- .ds-p-3 {
743
- @apply p-3 !important;
744
- }
745
- .ds-p-4 {
746
- @apply p-4 !important;
747
- }
748
- .ds-p-5 {
749
- @apply p-5 !important;
750
- }
751
- .ds-p-6 {
752
- @apply p-6 !important;
753
- }
754
- .ds-p-7 {
755
- @apply p-7 !important;
756
- }
757
- .ds-p-8 {
758
- @apply p-8 !important;
759
- }
760
- .ds-p-9 {
761
- @apply p-9 !important;
762
- }
763
- .ds-p-10 {
764
- @apply p-10 !important;
765
- }
766
- .ds-p-11 {
767
- @apply p-11 !important;
768
- }
769
- .ds-p-12 {
770
- @apply p-12 !important;
771
- }
772
- .ds-p-14 {
773
- @apply p-14 !important;
774
- }
775
- .ds-p-16 {
776
- @apply p-16 !important;
777
- }
778
- .ds-p-20 {
779
- @apply p-20 !important;
780
- }
781
- .ds-p-24 {
782
- @apply p-24 !important;
783
- }
784
- .ds-p-28 {
785
- @apply p-28 !important;
786
- }
787
- .ds-p-32 {
788
- @apply p-32 !important;
789
- }
790
- .ds-p-36 {
791
- @apply p-36 !important;
792
- }
793
- .ds-p-40 {
794
- @apply p-40 !important;
795
- }
796
- .ds-p-44 {
797
- @apply p-44 !important;
798
- }
799
- .ds-p-48 {
800
- @apply p-48 !important;
801
- }
802
- .ds-p-52 {
803
- @apply p-52 !important;
804
- }
805
- .ds-p-56 {
806
- @apply p-56 !important;
807
- }
808
- .ds-p-60 {
809
- @apply p-60 !important;
810
- }
811
- .ds-p-64 {
812
- @apply p-64 !important;
813
- }
814
- .ds-p-72 {
815
- @apply p-72 !important;
816
- }
817
- .ds-p-80 {
818
- @apply p-80 !important;
819
- }
820
- .ds-p-96 {
821
- @apply p-96 !important;
822
- }
823
- .ds-p-px {
824
- @apply p-px !important;
825
- }
826
- .ds-p-0\.5 {
827
- @apply p-0.5 !important;
828
- }
829
- .ds-p-1\.5 {
830
- @apply p-1.5 !important;
831
- }
832
- .ds-p-2\.5 {
833
- @apply p-2.5 !important;
834
- }
835
- .ds-p-3\.5 {
836
- @apply p-3.5 !important;
837
- }
838
- .ds-pt-0 {
839
- @apply pt-0 !important;
840
- }
841
- .ds-pt-1 {
842
- @apply pt-1 !important;
843
- }
844
- .ds-pt-2 {
845
- @apply pt-2 !important;
846
- }
847
- .ds-pt-3 {
848
- @apply pt-3 !important;
849
- }
850
- .ds-pt-4 {
851
- @apply pt-4 !important;
852
- }
853
- .ds-pt-5 {
854
- @apply pt-5 !important;
855
- }
856
- .ds-pt-6 {
857
- @apply pt-6 !important;
858
- }
859
- .ds-pt-7 {
860
- @apply pt-7 !important;
861
- }
862
- .ds-pt-8 {
863
- @apply pt-8 !important;
864
- }
865
- .ds-pt-9 {
866
- @apply pt-9 !important;
867
- }
868
- .ds-pt-10 {
869
- @apply pt-10 !important;
870
- }
871
- .ds-pt-11 {
872
- @apply pt-11 !important;
873
- }
874
- .ds-pt-12 {
875
- @apply pt-12 !important;
876
- }
877
- .ds-pt-14 {
878
- @apply pt-14 !important;
879
- }
880
- .ds-pt-16 {
881
- @apply pt-16 !important;
882
- }
883
- .ds-pt-20 {
884
- @apply pt-20 !important;
885
- }
886
- .ds-pt-24 {
887
- @apply pt-24 !important;
888
- }
889
- .ds-pt-28 {
890
- @apply pt-28 !important;
891
- }
892
- .ds-pt-32 {
893
- @apply pt-32 !important;
894
- }
895
- .ds-pt-36 {
896
- @apply pt-36 !important;
897
- }
898
- .ds-pt-40 {
899
- @apply pt-40 !important;
900
- }
901
- .ds-pt-44 {
902
- @apply pt-44 !important;
903
- }
904
- .ds-pt-48 {
905
- @apply pt-48 !important;
906
- }
907
- .ds-pt-52 {
908
- @apply pt-52 !important;
909
- }
910
- .ds-pt-56 {
911
- @apply pt-56 !important;
912
- }
913
- .ds-pt-60 {
914
- @apply pt-60 !important;
915
- }
916
- .ds-pt-64 {
917
- @apply pt-64 !important;
918
- }
919
- .ds-pt-72 {
920
- @apply pt-72 !important;
921
- }
922
- .ds-pt-80 {
923
- @apply pt-80 !important;
924
- }
925
- .ds-pt-96 {
926
- @apply pt-96 !important;
927
- }
928
- .ds-pt-px {
929
- @apply pt-px !important;
930
- }
931
- .ds-pt-0\.5 {
932
- @apply pt-0.5 !important;
933
- }
934
- .ds-pt-1\.5 {
935
- @apply pt-1.5 !important;
936
- }
937
- .ds-pt-2\.5 {
938
- @apply pt-2.5 !important;
939
- }
940
- .ds-pt-3\.5 {
941
- @apply pt-3.5 !important;
942
- }
943
- .ds-pr-0 {
944
- @apply pr-0 !important;
945
- }
946
- .ds-pr-1 {
947
- @apply pr-1 !important;
948
- }
949
- .ds-pr-2 {
950
- @apply pr-2 !important;
951
- }
952
- .ds-pr-3 {
953
- @apply pr-3 !important;
954
- }
955
- .ds-pr-4 {
956
- @apply pr-4 !important;
957
- }
958
- .ds-pr-5 {
959
- @apply pr-5 !important;
960
- }
961
- .ds-pr-6 {
962
- @apply pr-6 !important;
963
- }
964
- .ds-pr-7 {
965
- @apply pr-7 !important;
966
- }
967
- .ds-pr-8 {
968
- @apply pr-8 !important;
969
- }
970
- .ds-pr-9 {
971
- @apply pr-9 !important;
972
- }
973
- .ds-pr-10 {
974
- @apply pr-10 !important;
975
- }
976
- .ds-pr-11 {
977
- @apply pr-11 !important;
978
- }
979
- .ds-pr-12 {
980
- @apply pr-12 !important;
981
- }
982
- .ds-pr-14 {
983
- @apply pr-14 !important;
984
- }
985
- .ds-pr-16 {
986
- @apply pr-16 !important;
987
- }
988
- .ds-pr-20 {
989
- @apply pr-20 !important;
990
- }
991
- .ds-pr-24 {
992
- @apply pr-24 !important;
993
- }
994
- .ds-pr-28 {
995
- @apply pr-28 !important;
996
- }
997
- .ds-pr-32 {
998
- @apply pr-32 !important;
999
- }
1000
- .ds-pr-36 {
1001
- @apply pr-36 !important;
1002
- }
1003
- .ds-pr-40 {
1004
- @apply pr-40 !important;
1005
- }
1006
- .ds-pr-44 {
1007
- @apply pr-44 !important;
1008
- }
1009
- .ds-pr-48 {
1010
- @apply pr-48 !important;
1011
- }
1012
- .ds-pr-52 {
1013
- @apply pr-52 !important;
1014
- }
1015
- .ds-pr-56 {
1016
- @apply pr-56 !important;
1017
- }
1018
- .ds-pr-60 {
1019
- @apply pr-60 !important;
1020
- }
1021
- .ds-pr-64 {
1022
- @apply pr-64 !important;
1023
- }
1024
- .ds-pr-72 {
1025
- @apply pr-72 !important;
1026
- }
1027
- .ds-pr-80 {
1028
- @apply pr-80 !important;
1029
- }
1030
- .ds-pr-96 {
1031
- @apply pr-96 !important;
1032
- }
1033
- .ds-pr-px {
1034
- @apply pr-px !important;
1035
- }
1036
- .ds-pr-0\.5 {
1037
- @apply pr-0.5 !important;
1038
- }
1039
- .ds-pr-1\.5 {
1040
- @apply pr-1.5 !important;
1041
- }
1042
- .ds-pr-2\.5 {
1043
- @apply pr-2.5 !important;
1044
- }
1045
- .ds-pr-3\.5 {
1046
- @apply pr-3.5 !important;
1047
- }
1048
- .ds-pl-0 {
1049
- @apply pl-0 !important;
1050
- }
1051
- .ds-pl-1 {
1052
- @apply pl-1 !important;
1053
- }
1054
- .ds-pl-2 {
1055
- @apply pl-2 !important;
1056
- }
1057
- .ds-pl-3 {
1058
- @apply pl-3 !important;
1059
- }
1060
- .ds-pl-4 {
1061
- @apply pl-4 !important;
1062
- }
1063
- .ds-pl-5 {
1064
- @apply pl-5 !important;
1065
- }
1066
- .ds-pl-6 {
1067
- @apply pl-6 !important;
1068
- }
1069
- .ds-pl-7 {
1070
- @apply pl-7 !important;
1071
- }
1072
- .ds-pl-8 {
1073
- @apply pl-8 !important;
1074
- }
1075
- .ds-pl-9 {
1076
- @apply pl-9 !important;
1077
- }
1078
- .ds-pl-10 {
1079
- @apply pl-10 !important;
1080
- }
1081
- .ds-pl-11 {
1082
- @apply pl-11 !important;
1083
- }
1084
- .ds-pl-12 {
1085
- @apply pl-12 !important;
1086
- }
1087
- .ds-pl-14 {
1088
- @apply pl-14 !important;
1089
- }
1090
- .ds-pl-16 {
1091
- @apply pl-16 !important;
1092
- }
1093
- .ds-pl-20 {
1094
- @apply pl-20 !important;
1095
- }
1096
- .ds-pl-24 {
1097
- @apply pl-24 !important;
1098
- }
1099
- .ds-pl-28 {
1100
- @apply pl-28 !important;
1101
- }
1102
- .ds-pl-32 {
1103
- @apply pl-32 !important;
1104
- }
1105
- .ds-pl-36 {
1106
- @apply pl-36 !important;
1107
- }
1108
- .ds-pl-40 {
1109
- @apply pl-40 !important;
1110
- }
1111
- .ds-pl-44 {
1112
- @apply pl-44 !important;
1113
- }
1114
- .ds-pl-48 {
1115
- @apply pl-48 !important;
1116
- }
1117
- .ds-pl-52 {
1118
- @apply pl-52 !important;
1119
- }
1120
- .ds-pl-56 {
1121
- @apply pl-56 !important;
1122
- }
1123
- .ds-pl-60 {
1124
- @apply pl-60 !important;
1125
- }
1126
- .ds-pl-64 {
1127
- @apply pl-64 !important;
1128
- }
1129
- .ds-pl-72 {
1130
- @apply pl-72 !important;
1131
- }
1132
- .ds-pl-80 {
1133
- @apply pl-80 !important;
1134
- }
1135
- .ds-pl-96 {
1136
- @apply pl-96 !important;
1137
- }
1138
- .ds-pl-px {
1139
- @apply pl-px !important;
1140
- }
1141
- .ds-pl-0\.5 {
1142
- @apply pl-0.5 !important;
1143
- }
1144
- .ds-pl-1\.5 {
1145
- @apply pl-1.5 !important;
1146
- }
1147
- .ds-pl-2\.5 {
1148
- @apply pl-2.5 !important;
1149
- }
1150
- .ds-pl-3\.5 {
1151
- @apply pl-3.5 !important;
1152
- }
1153
- .ds-pb-0 {
1154
- @apply pb-0 !important;
1155
- }
1156
- .ds-pb-1 {
1157
- @apply pb-1 !important;
1158
- }
1159
- .ds-pb-2 {
1160
- @apply pb-2 !important;
1161
- }
1162
- .ds-pb-3 {
1163
- @apply pb-3 !important;
1164
- }
1165
- .ds-pb-4 {
1166
- @apply pb-4 !important;
1167
- }
1168
- .ds-pb-5 {
1169
- @apply pb-5 !important;
1170
- }
1171
- .ds-pb-6 {
1172
- @apply pb-6 !important;
1173
- }
1174
- .ds-pb-7 {
1175
- @apply pb-7 !important;
1176
- }
1177
- .ds-pb-8 {
1178
- @apply pb-8 !important;
1179
- }
1180
- .ds-pb-9 {
1181
- @apply pb-9 !important;
1182
- }
1183
- .ds-pb-10 {
1184
- @apply pb-10 !important;
1185
- }
1186
- .ds-pb-11 {
1187
- @apply pb-11 !important;
1188
- }
1189
- .ds-pb-12 {
1190
- @apply pb-12 !important;
1191
- }
1192
- .ds-pb-14 {
1193
- @apply pb-14 !important;
1194
- }
1195
- .ds-pb-16 {
1196
- @apply pb-16 !important;
1197
- }
1198
- .ds-pb-20 {
1199
- @apply pb-20 !important;
1200
- }
1201
- .ds-pb-24 {
1202
- @apply pb-24 !important;
1203
- }
1204
- .ds-pb-28 {
1205
- @apply pb-28 !important;
1206
- }
1207
- .ds-pb-32 {
1208
- @apply pb-32 !important;
1209
- }
1210
- .ds-pb-36 {
1211
- @apply pb-36 !important;
1212
- }
1213
- .ds-pb-40 {
1214
- @apply pb-40 !important;
1215
- }
1216
- .ds-pb-44 {
1217
- @apply pb-44 !important;
1218
- }
1219
- .ds-pb-48 {
1220
- @apply pb-48 !important;
1221
- }
1222
- .ds-pb-52 {
1223
- @apply pb-52 !important;
1224
- }
1225
- .ds-pb-56 {
1226
- @apply pb-56 !important;
1227
- }
1228
- .ds-pb-60 {
1229
- @apply pb-60 !important;
1230
- }
1231
- .ds-pb-64 {
1232
- @apply pb-64 !important;
1233
- }
1234
- .ds-pb-72 {
1235
- @apply pb-72 !important;
1236
- }
1237
- .ds-pb-80 {
1238
- @apply pb-80 !important;
1239
- }
1240
- .ds-pb-96 {
1241
- @apply pb-96 !important;
1242
- }
1243
- .ds-pb-px {
1244
- @apply pb-px !important;
1245
- }
1246
- .ds-pb-0\.5 {
1247
- @apply pb-0.5 !important;
1248
- }
1249
- .ds-pb-1\.5 {
1250
- @apply pb-1.5 !important;
1251
- }
1252
- .ds-pb-2\.5 {
1253
- @apply pb-2.5 !important;
1254
- }
1255
- .ds-pb-3\.5 {
1256
- @apply pb-3.5 !important;
1257
- }
1258
- .ds-px-0 {
1259
- @apply px-0 !important;
1260
- }
1261
- .ds-px-1 {
1262
- @apply px-1 !important;
1263
- }
1264
- .ds-px-2 {
1265
- @apply px-2 !important;
1266
- }
1267
- .ds-px-3 {
1268
- @apply px-3 !important;
1269
- }
1270
- .ds-px-4 {
1271
- @apply px-4 !important;
1272
- }
1273
- .ds-px-5 {
1274
- @apply px-5 !important;
1275
- }
1276
- .ds-px-6 {
1277
- @apply px-6 !important;
1278
- }
1279
- .ds-px-7 {
1280
- @apply px-7 !important;
1281
- }
1282
- .ds-px-8 {
1283
- @apply px-8 !important;
1284
- }
1285
- .ds-px-9 {
1286
- @apply px-9 !important;
1287
- }
1288
- .ds-px-10 {
1289
- @apply px-10 !important;
1290
- }
1291
- .ds-px-11 {
1292
- @apply px-11 !important;
1293
- }
1294
- .ds-px-12 {
1295
- @apply px-12 !important;
1296
- }
1297
- .ds-px-14 {
1298
- @apply px-14 !important;
1299
- }
1300
- .ds-px-16 {
1301
- @apply px-16 !important;
1302
- }
1303
- .ds-px-20 {
1304
- @apply px-20 !important;
1305
- }
1306
- .ds-px-24 {
1307
- @apply px-24 !important;
1308
- }
1309
- .ds-px-28 {
1310
- @apply px-28 !important;
1311
- }
1312
- .ds-px-32 {
1313
- @apply px-32 !important;
1314
- }
1315
- .ds-px-36 {
1316
- @apply px-36 !important;
1317
- }
1318
- .ds-px-40 {
1319
- @apply px-40 !important;
1320
- }
1321
- .ds-px-44 {
1322
- @apply px-44 !important;
1323
- }
1324
- .ds-px-48 {
1325
- @apply px-48 !important;
1326
- }
1327
- .ds-px-52 {
1328
- @apply px-52 !important;
1329
- }
1330
- .ds-px-56 {
1331
- @apply px-56 !important;
1332
- }
1333
- .ds-px-60 {
1334
- @apply px-60 !important;
1335
- }
1336
- .ds-px-64 {
1337
- @apply px-64 !important;
1338
- }
1339
- .ds-px-72 {
1340
- @apply px-72 !important;
1341
- }
1342
- .ds-px-80 {
1343
- @apply px-80 !important;
1344
- }
1345
- .ds-px-96 {
1346
- @apply px-96 !important;
1347
- }
1348
- .ds-px-0\.5 {
1349
- @apply px-0.5 !important;
1350
- }
1351
- .ds-px-1\.5 {
1352
- @apply px-1.5 !important;
1353
- }
1354
- .ds-px-2\.5 {
1355
- @apply px-2.5 !important;
1356
- }
1357
- .ds-px-3\.5 {
1358
- @apply px-3.5 !important;
1359
- }
1360
- .ds-py-0 {
1361
- @apply py-0 !important;
1362
- }
1363
- .ds-py-1 {
1364
- @apply py-1 !important;
1365
- }
1366
- .ds-py-2 {
1367
- @apply py-2 !important;
1368
- }
1369
- .ds-py-3 {
1370
- @apply py-3 !important;
1371
- }
1372
- .ds-py-4 {
1373
- @apply py-4 !important;
1374
- }
1375
- .ds-py-5 {
1376
- @apply py-5 !important;
1377
- }
1378
- .ds-py-6 {
1379
- @apply py-6 !important;
1380
- }
1381
- .ds-py-7 {
1382
- @apply py-7 !important;
1383
- }
1384
- .ds-py-8 {
1385
- @apply py-8 !important;
1386
- }
1387
- .ds-py-9 {
1388
- @apply py-9 !important;
1389
- }
1390
- .ds-py-10 {
1391
- @apply py-10 !important;
1392
- }
1393
- .ds-py-11 {
1394
- @apply py-11 !important;
1395
- }
1396
- .ds-py-12 {
1397
- @apply py-12 !important;
1398
- }
1399
- .ds-py-14 {
1400
- @apply py-14 !important;
1401
- }
1402
- .ds-py-16 {
1403
- @apply py-16 !important;
1404
- }
1405
- .ds-py-20 {
1406
- @apply py-20 !important;
1407
- }
1408
- .ds-py-24 {
1409
- @apply py-24 !important;
1410
- }
1411
- .ds-py-28 {
1412
- @apply py-28 !important;
1413
- }
1414
- .ds-py-32 {
1415
- @apply py-32 !important;
1416
- }
1417
- .ds-py-36 {
1418
- @apply py-36 !important;
1419
- }
1420
- .ds-py-40 {
1421
- @apply py-40 !important;
1422
- }
1423
- .ds-py-44 {
1424
- @apply py-44 !important;
1425
- }
1426
- .ds-py-48 {
1427
- @apply py-48 !important;
1428
- }
1429
- .ds-py-52 {
1430
- @apply py-52 !important;
1431
- }
1432
- .ds-py-56 {
1433
- @apply py-56 !important;
1434
- }
1435
- .ds-py-60 {
1436
- @apply py-60 !important;
1437
- }
1438
- .ds-py-64 {
1439
- @apply py-64 !important;
1440
- }
1441
- .ds-py-72 {
1442
- @apply py-72 !important;
1443
- }
1444
- .ds-py-80 {
1445
- @apply py-80 !important;
1446
- }
1447
- .ds-py-96 {
1448
- @apply py-96 !important;
1449
- }
1450
- .ds-py-0\.5 {
1451
- @apply py-0.5 !important;
1452
- }
1453
- .ds-py-1\.5 {
1454
- @apply py-1.5 !important;
1455
- }
1456
- .ds-py-2\.5 {
1457
- @apply py-2.5 !important;
1458
- }
1459
- .ds-py-3\.5 {
1460
- @apply py-3.5 !important;
1461
- }
1462
-
1463
- .ds-grid-inline {
1464
- @apply inline-grid;
1465
- }
1466
- .ds-grid {
1467
- @apply grid grid-cols-12;
1468
- }
1469
- .ds-grid__col-auto {
1470
- @apply col-auto;
1471
- }
1472
- .ds-grid__col-span-1 {
1473
- @apply col-span-1;
1474
- }
1475
- .ds-grid__col-span-2 {
1476
- @apply col-span-2;
1477
- }
1478
- .ds-grid__col-span-3 {
1479
- @apply col-span-3;
1480
- }
1481
- .ds-grid__col-span-4 {
1482
- @apply col-span-4;
1483
- }
1484
- .ds-grid__col-span-5 {
1485
- @apply col-span-5;
1486
- }
1487
- .ds-grid__col-span-6 {
1488
- @apply col-span-6;
1489
- }
1490
- .ds-grid__col-span-7 {
1491
- @apply col-span-7;
1492
- }
1493
- .ds-grid__col-span-8 {
1494
- @apply col-span-8;
1495
- }
1496
- .ds-grid__col-span-9 {
1497
- @apply col-span-9;
1498
- }
1499
- .ds-grid__col-span-10 {
1500
- @apply col-span-10;
1501
- }
1502
- .ds-grid__col-span-11 {
1503
- @apply col-span-11;
1504
- }
1505
- .ds-grid__col-span-12 {
1506
- @apply col-span-12;
1507
- }
1508
- .ds-print-hidden {
1509
- @apply print:hidden !important;
1510
- }
1511
- .ds-print-visible-block {
1512
- @apply print:block !important;
1513
- }
1514
- .ds-print-visible-inline {
1515
- @apply print:inline !important;
1516
- }
1517
- .ds-gap-1 {
1518
- @apply gap-1;
1519
- }
1520
- .ds-gap-2 {
1521
- @apply gap-2;
1522
- }
1523
- .ds-gap-4 {
1524
- @apply gap-4;
1525
- }
1526
- .ds-gap-5 {
1527
- @apply gap-5;
1528
- }
1529
- .ds-gap-6 {
1530
- @apply gap-6;
1531
- }
1532
- .ds-gap-8 {
1533
- @apply gap-8;
1534
- }
1535
- .ds-gap-10 {
1536
- @apply gap-10;
1537
- }
1538
- .ds-gap-12 {
1539
- @apply gap-12;
1540
- }
1541
- .ds-gap-xs-1 {
1542
- @apply gap-1;
1543
- }
1544
- .ds-gap-xs-2 {
1545
- @apply gap-2;
1546
- }
1547
- .ds-gap-xs-4 {
1548
- @apply gap-4;
1549
- }
1550
- .ds-gap-xs-5 {
1551
- @apply gap-5;
1552
- }
1553
- .ds-gap-xs-6 {
1554
- @apply gap-6;
1555
- }
1556
- .ds-gap-xs-8 {
1557
- @apply gap-8;
1558
- }
1559
- .ds-gap-xs-10 {
1560
- @apply gap-10;
1561
- }
1562
- .ds-gap-xs-12 {
1563
- @apply gap-12;
1564
- }
1565
- .ds-gap-sm-1 {
1566
- @apply sm:gap-1;
1567
- }
1568
- .ds-gap-sm-2 {
1569
- @apply sm:gap-2;
1570
- }
1571
- .ds-gap-sm-4 {
1572
- @apply sm:gap-4;
1573
- }
1574
- .ds-gap-sm-5 {
1575
- @apply sm:gap-5;
1576
- }
1577
- .ds-gap-sm-6 {
1578
- @apply sm:gap-6;
1579
- }
1580
- .ds-gap-sm-8 {
1581
- @apply sm:gap-8;
1582
- }
1583
- .ds-gap-sm-10 {
1584
- @apply sm:gap-10;
1585
- }
1586
- .ds-gap-sm-12 {
1587
- @apply sm:gap-12;
1588
- }
1589
- .ds-gap-md-1 {
1590
- @apply md:gap-1;
1591
- }
1592
- .ds-gap-md-2 {
1593
- @apply md:gap-2;
1594
- }
1595
- .ds-gap-md-4 {
1596
- @apply md:gap-4;
1597
- }
1598
- .ds-gap-md-5 {
1599
- @apply md:gap-5;
1600
- }
1601
- .ds-gap-md-6 {
1602
- @apply md:gap-6;
1603
- }
1604
- .ds-gap-md-8 {
1605
- @apply md:gap-8;
1606
- }
1607
- .ds-gap-md-10 {
1608
- @apply md:gap-10;
1609
- }
1610
- .ds-gap-md-12 {
1611
- @apply md:gap-12;
1612
- }
1613
- .ds-gap-lg-1 {
1614
- @apply lg:gap-1;
1615
- }
1616
- .ds-gap-lg-2 {
1617
- @apply lg:gap-2;
1618
- }
1619
- .ds-gap-lg-4 {
1620
- @apply lg:gap-4;
1621
- }
1622
- .ds-gap-lg-5 {
1623
- @apply lg:gap-5;
1624
- }
1625
- .ds-gap-lg-6 {
1626
- @apply lg:gap-6;
1627
- }
1628
- .ds-gap-lg-8 {
1629
- @apply lg:gap-8;
1630
- }
1631
- .ds-gap-lg-10 {
1632
- @apply lg:gap-10;
1633
- }
1634
- .ds-gap-lg-12 {
1635
- @apply lg:gap-12;
1636
- }
1637
- .ds-gap-xl-1 {
1638
- @apply xl:gap-1;
1639
- }
1640
- .ds-gap-xl-2 {
1641
- @apply xl:gap-2;
1642
- }
1643
- .ds-gap-xl-4 {
1644
- @apply xl:gap-4;
1645
- }
1646
- .ds-gap-xl-5 {
1647
- @apply xl:gap-5;
1648
- }
1649
- .ds-gap-xl-6 {
1650
- @apply xl:gap-6;
1651
- }
1652
- .ds-gap-xl-8 {
1653
- @apply xl:gap-8;
1654
- }
1655
- .ds-gap-xl-10 {
1656
- @apply xl:gap-10;
1657
- }
1658
- .ds-gap-xl-12 {
1659
- @apply xl:gap-12;
1660
- }
1661
- }
1
+ @import './gap.css';
2
+ @import './margin.css';
3
+ @import './padding.css';