@baloise/ds-styles 0.0.5-nightly.e56f740

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 (117) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +45 -0
  3. package/bin/index.mjs +1333 -0
  4. package/css/all.css +18468 -0
  5. package/css/all.css.map +1 -0
  6. package/css/all.min.css +1 -0
  7. package/css/baloise-design-system.css +18468 -0
  8. package/css/baloise-design-system.css.map +1 -0
  9. package/css/baloise-design-system.min.css +1 -0
  10. package/css/core.css +4423 -0
  11. package/css/core.css.map +1 -0
  12. package/css/core.min.css +1 -0
  13. package/css/font.css +29 -0
  14. package/css/font.css.map +1 -0
  15. package/css/font.min.css +1 -0
  16. package/css/mixins.css +2 -0
  17. package/css/mixins.css.map +1 -0
  18. package/css/mixins.min.css +0 -0
  19. package/css/normalize.css +351 -0
  20. package/css/normalize.css.map +1 -0
  21. package/css/normalize.min.css +1 -0
  22. package/css/structure.css +147 -0
  23. package/css/structure.css.map +1 -0
  24. package/css/structure.min.css +1 -0
  25. package/css/themes/compact.css +30 -0
  26. package/css/themes/compact.css.map +1 -0
  27. package/css/themes/compact.min.css +1 -0
  28. package/css/utilities/all.css +13112 -0
  29. package/css/utilities/all.css.map +1 -0
  30. package/css/utilities/all.min.css +1 -0
  31. package/css/utilities/background.css +1460 -0
  32. package/css/utilities/background.css.map +1 -0
  33. package/css/utilities/background.min.css +1 -0
  34. package/css/utilities/border.css +4697 -0
  35. package/css/utilities/border.css.map +1 -0
  36. package/css/utilities/border.min.css +1 -0
  37. package/css/utilities/elevation.css +317 -0
  38. package/css/utilities/elevation.css.map +1 -0
  39. package/css/utilities/elevation.min.css +1 -0
  40. package/css/utilities/flex.css +969 -0
  41. package/css/utilities/flex.css.map +1 -0
  42. package/css/utilities/flex.min.css +1 -0
  43. package/css/utilities/grid.css +1209 -0
  44. package/css/utilities/grid.css.map +1 -0
  45. package/css/utilities/grid.min.css +1 -0
  46. package/css/utilities/interaction.css +44 -0
  47. package/css/utilities/interaction.css.map +1 -0
  48. package/css/utilities/interaction.min.css +1 -0
  49. package/css/utilities/layout.css +1055 -0
  50. package/css/utilities/layout.css.map +1 -0
  51. package/css/utilities/layout.min.css +1 -0
  52. package/css/utilities/sizing.css +1931 -0
  53. package/css/utilities/sizing.css.map +1 -0
  54. package/css/utilities/sizing.min.css +1 -0
  55. package/css/utilities/spacing.css +1881 -0
  56. package/css/utilities/spacing.css.map +1 -0
  57. package/css/utilities/spacing.min.css +1 -0
  58. package/css/utilities/typography.css +763 -0
  59. package/css/utilities/typography.css.map +1 -0
  60. package/css/utilities/typography.min.css +1 -0
  61. package/package.json +36 -0
  62. package/sass/all.sass +6 -0
  63. package/sass/baloise-design-system.sass +1 -0
  64. package/sass/core.sass +37 -0
  65. package/sass/font.sass +1 -0
  66. package/sass/mixins.sass +3 -0
  67. package/sass/normalize.sass +359 -0
  68. package/sass/structure.sass +113 -0
  69. package/sass/themes/compact.sass +28 -0
  70. package/sass/utilities/all.sass +9 -0
  71. package/sass/utilities/background.sass +5 -0
  72. package/sass/utilities/border.sass +2 -0
  73. package/sass/utilities/elevation.sass +2 -0
  74. package/sass/utilities/flex.sass +2 -0
  75. package/sass/utilities/grid.sass +2 -0
  76. package/sass/utilities/interaction.sass +2 -0
  77. package/sass/utilities/layout.sass +12 -0
  78. package/sass/utilities/sizing.sass +2 -0
  79. package/sass/utilities/spacing.sass +2 -0
  80. package/sass/utilities/typography.sass +127 -0
  81. package/src/core/_all.sass +18 -0
  82. package/src/core/container.sass +23 -0
  83. package/src/core/form/_all.sass +6 -0
  84. package/src/core/form/button.sass +532 -0
  85. package/src/core/form/file.sass +139 -0
  86. package/src/core/form/input-textarea.sass +80 -0
  87. package/src/core/form/select.sass +111 -0
  88. package/src/core/form/shared.sass +69 -0
  89. package/src/core/form/tools.sass +209 -0
  90. package/src/core/grid.sass +477 -0
  91. package/src/core/link.sass +64 -0
  92. package/src/core/list.sass +85 -0
  93. package/src/core/table.sass +134 -0
  94. package/src/core/typography.sass +33 -0
  95. package/src/core/vars/_all.sass +7 -0
  96. package/src/core/vars/button.vars.sass +282 -0
  97. package/src/core/vars/form.vars.sass +137 -0
  98. package/src/core/vars/link.vars.sass +36 -0
  99. package/src/core/vars/list.vars.sass +20 -0
  100. package/src/core/vars/structure.vars.sass +47 -0
  101. package/src/core/vars/table.vars.sass +55 -0
  102. package/src/core/vars/typography.vars.sass +12 -0
  103. package/src/generated/background.sass +1091 -0
  104. package/src/generated/border.sass +3943 -0
  105. package/src/generated/elevation.sass +283 -0
  106. package/src/generated/flex.sass +831 -0
  107. package/src/generated/interaction.sass +26 -0
  108. package/src/generated/layout.sass +948 -0
  109. package/src/generated/sizing.sass +1703 -0
  110. package/src/generated/spacing.sass +1683 -0
  111. package/src/generated/typography.sass +453 -0
  112. package/src/mixins/_all.sass +7 -0
  113. package/src/mixins/bem.mixin.sass +39 -0
  114. package/src/mixins/breakpoint.mixin.sass +67 -0
  115. package/src/mixins/extends.sass +32 -0
  116. package/src/mixins/general.mixin.sass +95 -0
  117. package/src/mixins/svg.mixin.sass +6 -0
@@ -0,0 +1,831 @@
1
+ .align-content-start
2
+ align-content: flex-start !important
3
+
4
+ .align-content-end
5
+ align-content: flex-end !important
6
+
7
+ .align-content-center
8
+ align-content: center !important
9
+
10
+ .align-content-baseline
11
+ align-content: baseline !important
12
+
13
+ .align-content-space-between
14
+ align-content: space-between !important
15
+
16
+ .align-content-space-around
17
+ align-content: space-around !important
18
+
19
+ .align-content-space-evenly
20
+ align-content: space-evenly !important
21
+
22
+ +mobile
23
+ .mobile\:align-content-start
24
+ align-content: flex-start !important
25
+
26
+ .mobile\:align-content-end
27
+ align-content: flex-end !important
28
+
29
+ .mobile\:align-content-center
30
+ align-content: center !important
31
+
32
+ .mobile\:align-content-baseline
33
+ align-content: baseline !important
34
+
35
+ .mobile\:align-content-space-between
36
+ align-content: space-between !important
37
+
38
+ .mobile\:align-content-space-around
39
+ align-content: space-around !important
40
+
41
+ .mobile\:align-content-space-evenly
42
+ align-content: space-evenly !important
43
+
44
+ +tablet
45
+ .tablet\:align-content-start
46
+ align-content: flex-start !important
47
+
48
+ .tablet\:align-content-end
49
+ align-content: flex-end !important
50
+
51
+ .tablet\:align-content-center
52
+ align-content: center !important
53
+
54
+ .tablet\:align-content-baseline
55
+ align-content: baseline !important
56
+
57
+ .tablet\:align-content-space-between
58
+ align-content: space-between !important
59
+
60
+ .tablet\:align-content-space-around
61
+ align-content: space-around !important
62
+
63
+ .tablet\:align-content-space-evenly
64
+ align-content: space-evenly !important
65
+
66
+ +desktop
67
+ .desktop\:align-content-start
68
+ align-content: flex-start !important
69
+
70
+ .desktop\:align-content-end
71
+ align-content: flex-end !important
72
+
73
+ .desktop\:align-content-center
74
+ align-content: center !important
75
+
76
+ .desktop\:align-content-baseline
77
+ align-content: baseline !important
78
+
79
+ .desktop\:align-content-space-between
80
+ align-content: space-between !important
81
+
82
+ .desktop\:align-content-space-around
83
+ align-content: space-around !important
84
+
85
+ .desktop\:align-content-space-evenly
86
+ align-content: space-evenly !important
87
+
88
+ +widescreen
89
+ .widescreen\:align-content-start
90
+ align-content: flex-start !important
91
+
92
+ .widescreen\:align-content-end
93
+ align-content: flex-end !important
94
+
95
+ .widescreen\:align-content-center
96
+ align-content: center !important
97
+
98
+ .widescreen\:align-content-baseline
99
+ align-content: baseline !important
100
+
101
+ .widescreen\:align-content-space-between
102
+ align-content: space-between !important
103
+
104
+ .widescreen\:align-content-space-around
105
+ align-content: space-around !important
106
+
107
+ .widescreen\:align-content-space-evenly
108
+ align-content: space-evenly !important
109
+
110
+ .align-items-start
111
+ align-items: flex-start !important
112
+
113
+ .align-items-end
114
+ align-items: flex-end !important
115
+
116
+ .align-items-center
117
+ align-items: center !important
118
+
119
+ .align-items-stretch
120
+ align-items: stretch !important
121
+
122
+ .align-items-baseline
123
+ align-items: baseline !important
124
+
125
+ +mobile
126
+ .mobile\:align-items-start
127
+ align-items: flex-start !important
128
+
129
+ .mobile\:align-items-end
130
+ align-items: flex-end !important
131
+
132
+ .mobile\:align-items-center
133
+ align-items: center !important
134
+
135
+ .mobile\:align-items-stretch
136
+ align-items: stretch !important
137
+
138
+ .mobile\:align-items-baseline
139
+ align-items: baseline !important
140
+
141
+ +tablet
142
+ .tablet\:align-items-start
143
+ align-items: flex-start !important
144
+
145
+ .tablet\:align-items-end
146
+ align-items: flex-end !important
147
+
148
+ .tablet\:align-items-center
149
+ align-items: center !important
150
+
151
+ .tablet\:align-items-stretch
152
+ align-items: stretch !important
153
+
154
+ .tablet\:align-items-baseline
155
+ align-items: baseline !important
156
+
157
+ +desktop
158
+ .desktop\:align-items-start
159
+ align-items: flex-start !important
160
+
161
+ .desktop\:align-items-end
162
+ align-items: flex-end !important
163
+
164
+ .desktop\:align-items-center
165
+ align-items: center !important
166
+
167
+ .desktop\:align-items-stretch
168
+ align-items: stretch !important
169
+
170
+ .desktop\:align-items-baseline
171
+ align-items: baseline !important
172
+
173
+ +widescreen
174
+ .widescreen\:align-items-start
175
+ align-items: flex-start !important
176
+
177
+ .widescreen\:align-items-end
178
+ align-items: flex-end !important
179
+
180
+ .widescreen\:align-items-center
181
+ align-items: center !important
182
+
183
+ .widescreen\:align-items-stretch
184
+ align-items: stretch !important
185
+
186
+ .widescreen\:align-items-baseline
187
+ align-items: baseline !important
188
+
189
+ .align-self-start
190
+ align-self: flex-start !important
191
+
192
+ .align-self-end
193
+ align-self: flex-end !important
194
+
195
+ .align-self-center
196
+ align-self: center !important
197
+
198
+ .align-self-stretch
199
+ align-self: stretch !important
200
+
201
+ .align-self-baseline
202
+ align-self: baseline !important
203
+
204
+ +mobile
205
+ .mobile\:align-self-start
206
+ align-self: flex-start !important
207
+
208
+ .mobile\:align-self-end
209
+ align-self: flex-end !important
210
+
211
+ .mobile\:align-self-center
212
+ align-self: center !important
213
+
214
+ .mobile\:align-self-stretch
215
+ align-self: stretch !important
216
+
217
+ .mobile\:align-self-baseline
218
+ align-self: baseline !important
219
+
220
+ +tablet
221
+ .tablet\:align-self-start
222
+ align-self: flex-start !important
223
+
224
+ .tablet\:align-self-end
225
+ align-self: flex-end !important
226
+
227
+ .tablet\:align-self-center
228
+ align-self: center !important
229
+
230
+ .tablet\:align-self-stretch
231
+ align-self: stretch !important
232
+
233
+ .tablet\:align-self-baseline
234
+ align-self: baseline !important
235
+
236
+ +desktop
237
+ .desktop\:align-self-start
238
+ align-self: flex-start !important
239
+
240
+ .desktop\:align-self-end
241
+ align-self: flex-end !important
242
+
243
+ .desktop\:align-self-center
244
+ align-self: center !important
245
+
246
+ .desktop\:align-self-stretch
247
+ align-self: stretch !important
248
+
249
+ .desktop\:align-self-baseline
250
+ align-self: baseline !important
251
+
252
+ +widescreen
253
+ .widescreen\:align-self-start
254
+ align-self: flex-start !important
255
+
256
+ .widescreen\:align-self-end
257
+ align-self: flex-end !important
258
+
259
+ .widescreen\:align-self-center
260
+ align-self: center !important
261
+
262
+ .widescreen\:align-self-stretch
263
+ align-self: stretch !important
264
+
265
+ .widescreen\:align-self-baseline
266
+ align-self: baseline !important
267
+
268
+ .flex-direction-row
269
+ flex-direction: row !important
270
+
271
+ .flex-direction-row-reverse
272
+ flex-direction: row-reverse !important
273
+
274
+ .flex-direction-column
275
+ flex-direction: column !important
276
+
277
+ .flex-direction-column-reverse
278
+ flex-direction: column-reverse !important
279
+
280
+ +mobile
281
+ .mobile\:flex-direction-row
282
+ flex-direction: row !important
283
+
284
+ .mobile\:flex-direction-row-reverse
285
+ flex-direction: row-reverse !important
286
+
287
+ .mobile\:flex-direction-column
288
+ flex-direction: column !important
289
+
290
+ .mobile\:flex-direction-column-reverse
291
+ flex-direction: column-reverse !important
292
+
293
+ +tablet
294
+ .tablet\:flex-direction-row
295
+ flex-direction: row !important
296
+
297
+ .tablet\:flex-direction-row-reverse
298
+ flex-direction: row-reverse !important
299
+
300
+ .tablet\:flex-direction-column
301
+ flex-direction: column !important
302
+
303
+ .tablet\:flex-direction-column-reverse
304
+ flex-direction: column-reverse !important
305
+
306
+ +desktop
307
+ .desktop\:flex-direction-row
308
+ flex-direction: row !important
309
+
310
+ .desktop\:flex-direction-row-reverse
311
+ flex-direction: row-reverse !important
312
+
313
+ .desktop\:flex-direction-column
314
+ flex-direction: column !important
315
+
316
+ .desktop\:flex-direction-column-reverse
317
+ flex-direction: column-reverse !important
318
+
319
+ +widescreen
320
+ .widescreen\:flex-direction-row
321
+ flex-direction: row !important
322
+
323
+ .widescreen\:flex-direction-row-reverse
324
+ flex-direction: row-reverse !important
325
+
326
+ .widescreen\:flex-direction-column
327
+ flex-direction: column !important
328
+
329
+ .widescreen\:flex-direction-column-reverse
330
+ flex-direction: column-reverse !important
331
+
332
+ .flex-1
333
+ flex: 1 1 0% !important
334
+
335
+ .flex-auto
336
+ flex: 1 1 auto !important
337
+
338
+ .flex-initial
339
+ flex: 0 1 auto !important
340
+
341
+ .flex-none
342
+ flex: none !important
343
+
344
+ +mobile
345
+ .mobile\:flex-1
346
+ flex: 1 1 0% !important
347
+
348
+ .mobile\:flex-auto
349
+ flex: 1 1 auto !important
350
+
351
+ .mobile\:flex-initial
352
+ flex: 0 1 auto !important
353
+
354
+ .mobile\:flex-none
355
+ flex: none !important
356
+
357
+ +tablet
358
+ .tablet\:flex-1
359
+ flex: 1 1 0% !important
360
+
361
+ .tablet\:flex-auto
362
+ flex: 1 1 auto !important
363
+
364
+ .tablet\:flex-initial
365
+ flex: 0 1 auto !important
366
+
367
+ .tablet\:flex-none
368
+ flex: none !important
369
+
370
+ +desktop
371
+ .desktop\:flex-1
372
+ flex: 1 1 0% !important
373
+
374
+ .desktop\:flex-auto
375
+ flex: 1 1 auto !important
376
+
377
+ .desktop\:flex-initial
378
+ flex: 0 1 auto !important
379
+
380
+ .desktop\:flex-none
381
+ flex: none !important
382
+
383
+ +widescreen
384
+ .widescreen\:flex-1
385
+ flex: 1 1 0% !important
386
+
387
+ .widescreen\:flex-auto
388
+ flex: 1 1 auto !important
389
+
390
+ .widescreen\:flex-initial
391
+ flex: 0 1 auto !important
392
+
393
+ .widescreen\:flex-none
394
+ flex: none !important
395
+
396
+ .justify-content-start
397
+ justify-content: flex-start !important
398
+
399
+ .justify-content-end
400
+ justify-content: flex-end !important
401
+
402
+ .justify-content-center
403
+ justify-content: center !important
404
+
405
+ .justify-content-space-between
406
+ justify-content: space-between !important
407
+
408
+ .justify-content-space-around
409
+ justify-content: space-around !important
410
+
411
+ .justify-content-space-evenly
412
+ justify-content: space-evenly !important
413
+
414
+ +mobile
415
+ .mobile\:justify-content-start
416
+ justify-content: flex-start !important
417
+
418
+ .mobile\:justify-content-end
419
+ justify-content: flex-end !important
420
+
421
+ .mobile\:justify-content-center
422
+ justify-content: center !important
423
+
424
+ .mobile\:justify-content-space-between
425
+ justify-content: space-between !important
426
+
427
+ .mobile\:justify-content-space-around
428
+ justify-content: space-around !important
429
+
430
+ .mobile\:justify-content-space-evenly
431
+ justify-content: space-evenly !important
432
+
433
+ +tablet
434
+ .tablet\:justify-content-start
435
+ justify-content: flex-start !important
436
+
437
+ .tablet\:justify-content-end
438
+ justify-content: flex-end !important
439
+
440
+ .tablet\:justify-content-center
441
+ justify-content: center !important
442
+
443
+ .tablet\:justify-content-space-between
444
+ justify-content: space-between !important
445
+
446
+ .tablet\:justify-content-space-around
447
+ justify-content: space-around !important
448
+
449
+ .tablet\:justify-content-space-evenly
450
+ justify-content: space-evenly !important
451
+
452
+ +desktop
453
+ .desktop\:justify-content-start
454
+ justify-content: flex-start !important
455
+
456
+ .desktop\:justify-content-end
457
+ justify-content: flex-end !important
458
+
459
+ .desktop\:justify-content-center
460
+ justify-content: center !important
461
+
462
+ .desktop\:justify-content-space-between
463
+ justify-content: space-between !important
464
+
465
+ .desktop\:justify-content-space-around
466
+ justify-content: space-around !important
467
+
468
+ .desktop\:justify-content-space-evenly
469
+ justify-content: space-evenly !important
470
+
471
+ +widescreen
472
+ .widescreen\:justify-content-start
473
+ justify-content: flex-start !important
474
+
475
+ .widescreen\:justify-content-end
476
+ justify-content: flex-end !important
477
+
478
+ .widescreen\:justify-content-center
479
+ justify-content: center !important
480
+
481
+ .widescreen\:justify-content-space-between
482
+ justify-content: space-between !important
483
+
484
+ .widescreen\:justify-content-space-around
485
+ justify-content: space-around !important
486
+
487
+ .widescreen\:justify-content-space-evenly
488
+ justify-content: space-evenly !important
489
+
490
+ .flex-nowrap
491
+ flex-wrap: nowrap !important
492
+
493
+ .flex-wrap
494
+ flex-wrap: wrap !important
495
+
496
+ .flex-wrap-reverse
497
+ flex-wrap: wrap-reverse !important
498
+
499
+ +mobile
500
+ .mobile\:flex-nowrap
501
+ flex-wrap: nowrap !important
502
+
503
+ .mobile\:flex-wrap
504
+ flex-wrap: wrap !important
505
+
506
+ .mobile\:flex-wrap-reverse
507
+ flex-wrap: wrap-reverse !important
508
+
509
+ +tablet
510
+ .tablet\:flex-nowrap
511
+ flex-wrap: nowrap !important
512
+
513
+ .tablet\:flex-wrap
514
+ flex-wrap: wrap !important
515
+
516
+ .tablet\:flex-wrap-reverse
517
+ flex-wrap: wrap-reverse !important
518
+
519
+ +desktop
520
+ .desktop\:flex-nowrap
521
+ flex-wrap: nowrap !important
522
+
523
+ .desktop\:flex-wrap
524
+ flex-wrap: wrap !important
525
+
526
+ .desktop\:flex-wrap-reverse
527
+ flex-wrap: wrap-reverse !important
528
+
529
+ +widescreen
530
+ .widescreen\:flex-nowrap
531
+ flex-wrap: nowrap !important
532
+
533
+ .widescreen\:flex-wrap
534
+ flex-wrap: wrap !important
535
+
536
+ .widescreen\:flex-wrap-reverse
537
+ flex-wrap: wrap-reverse !important
538
+
539
+ .gap-none
540
+ gap: 0 !important
541
+
542
+ .gap-auto
543
+ gap: auto !important
544
+
545
+ .gap-xx-small
546
+ gap: var(--bal-space-xx-small) !important
547
+
548
+ .gap-x-small
549
+ gap: var(--bal-space-x-small) !important
550
+
551
+ .gap-small
552
+ gap: var(--bal-space-small) !important
553
+
554
+ .gap-normal
555
+ gap: var(--bal-space-normal) !important
556
+
557
+ .gap-medium
558
+ gap: var(--bal-space-medium) !important
559
+
560
+ .gap-large
561
+ gap: var(--bal-space-large) !important
562
+
563
+ .gap-x-large
564
+ gap: var(--bal-space-x-large) !important
565
+
566
+ .gap-xx-large
567
+ gap: var(--bal-space-xx-large) !important
568
+
569
+ .gap-xxx-large
570
+ gap: var(--bal-space-xxx-large) !important
571
+
572
+ .gap-xxxx-large
573
+ gap: var(--bal-space-xxxx-large) !important
574
+
575
+ .row-gap-none
576
+ row-gap: 0 !important
577
+
578
+ .row-gap-auto
579
+ row-gap: auto !important
580
+
581
+ .row-gap-xx-small
582
+ row-gap: var(--bal-space-xx-small) !important
583
+
584
+ .row-gap-x-small
585
+ row-gap: var(--bal-space-x-small) !important
586
+
587
+ .row-gap-small
588
+ row-gap: var(--bal-space-small) !important
589
+
590
+ .row-gap-normal
591
+ row-gap: var(--bal-space-normal) !important
592
+
593
+ .row-gap-medium
594
+ row-gap: var(--bal-space-medium) !important
595
+
596
+ .row-gap-large
597
+ row-gap: var(--bal-space-large) !important
598
+
599
+ .row-gap-x-large
600
+ row-gap: var(--bal-space-x-large) !important
601
+
602
+ .row-gap-xx-large
603
+ row-gap: var(--bal-space-xx-large) !important
604
+
605
+ .row-gap-xxx-large
606
+ row-gap: var(--bal-space-xxx-large) !important
607
+
608
+ .row-gap-xxxx-large
609
+ row-gap: var(--bal-space-xxxx-large) !important
610
+
611
+ .column-gap-none
612
+ column-gap: 0 !important
613
+
614
+ .column-gap-auto
615
+ column-gap: auto !important
616
+
617
+ .column-gap-xx-small
618
+ column-gap: var(--bal-space-xx-small) !important
619
+
620
+ .column-gap-x-small
621
+ column-gap: var(--bal-space-x-small) !important
622
+
623
+ .column-gap-small
624
+ column-gap: var(--bal-space-small) !important
625
+
626
+ .column-gap-normal
627
+ column-gap: var(--bal-space-normal) !important
628
+
629
+ .column-gap-medium
630
+ column-gap: var(--bal-space-medium) !important
631
+
632
+ .column-gap-large
633
+ column-gap: var(--bal-space-large) !important
634
+
635
+ .column-gap-x-large
636
+ column-gap: var(--bal-space-x-large) !important
637
+
638
+ .column-gap-xx-large
639
+ column-gap: var(--bal-space-xx-large) !important
640
+
641
+ .column-gap-xxx-large
642
+ column-gap: var(--bal-space-xxx-large) !important
643
+
644
+ .column-gap-xxxx-large
645
+ column-gap: var(--bal-space-xxxx-large) !important
646
+
647
+ +tablet
648
+ .gap-xx-small
649
+ gap: var(--bal-space-xx-small-tablet) !important
650
+
651
+ .gap-x-small
652
+ gap: var(--bal-space-x-small-tablet) !important
653
+
654
+ .gap-small
655
+ gap: var(--bal-space-small-tablet) !important
656
+
657
+ .gap-normal
658
+ gap: var(--bal-space-normal-tablet) !important
659
+
660
+ .gap-medium
661
+ gap: var(--bal-space-medium-tablet) !important
662
+
663
+ .gap-large
664
+ gap: var(--bal-space-large-tablet) !important
665
+
666
+ .gap-x-large
667
+ gap: var(--bal-space-x-large-tablet) !important
668
+
669
+ .gap-xx-large
670
+ gap: var(--bal-space-xx-large-tablet) !important
671
+
672
+ .gap-xxx-large
673
+ gap: var(--bal-space-xxx-large-tablet) !important
674
+
675
+ .gap-xxxx-large
676
+ gap: var(--bal-space-xxxx-large-tablet) !important
677
+
678
+ +tablet
679
+ .row-gap-xx-small
680
+ row-gap: var(--bal-space-xx-small-tablet) !important
681
+
682
+ .row-gap-x-small
683
+ row-gap: var(--bal-space-x-small-tablet) !important
684
+
685
+ .row-gap-small
686
+ row-gap: var(--bal-space-small-tablet) !important
687
+
688
+ .row-gap-normal
689
+ row-gap: var(--bal-space-normal-tablet) !important
690
+
691
+ .row-gap-medium
692
+ row-gap: var(--bal-space-medium-tablet) !important
693
+
694
+ .row-gap-large
695
+ row-gap: var(--bal-space-large-tablet) !important
696
+
697
+ .row-gap-x-large
698
+ row-gap: var(--bal-space-x-large-tablet) !important
699
+
700
+ .row-gap-xx-large
701
+ row-gap: var(--bal-space-xx-large-tablet) !important
702
+
703
+ .row-gap-xxx-large
704
+ row-gap: var(--bal-space-xxx-large-tablet) !important
705
+
706
+ .row-gap-xxxx-large
707
+ row-gap: var(--bal-space-xxxx-large-tablet) !important
708
+
709
+ +tablet
710
+ .column-gap-xx-small
711
+ column-gap: var(--bal-space-xx-small-tablet) !important
712
+
713
+ .column-gap-x-small
714
+ column-gap: var(--bal-space-x-small-tablet) !important
715
+
716
+ .column-gap-small
717
+ column-gap: var(--bal-space-small-tablet) !important
718
+
719
+ .column-gap-normal
720
+ column-gap: var(--bal-space-normal-tablet) !important
721
+
722
+ .column-gap-medium
723
+ column-gap: var(--bal-space-medium-tablet) !important
724
+
725
+ .column-gap-large
726
+ column-gap: var(--bal-space-large-tablet) !important
727
+
728
+ .column-gap-x-large
729
+ column-gap: var(--bal-space-x-large-tablet) !important
730
+
731
+ .column-gap-xx-large
732
+ column-gap: var(--bal-space-xx-large-tablet) !important
733
+
734
+ .column-gap-xxx-large
735
+ column-gap: var(--bal-space-xxx-large-tablet) !important
736
+
737
+ .column-gap-xxxx-large
738
+ column-gap: var(--bal-space-xxxx-large-tablet) !important
739
+
740
+ +desktop
741
+ .gap-xx-small
742
+ gap: var(--bal-space-xx-small-desktop) !important
743
+
744
+ .gap-x-small
745
+ gap: var(--bal-space-x-small-desktop) !important
746
+
747
+ .gap-small
748
+ gap: var(--bal-space-small-desktop) !important
749
+
750
+ .gap-normal
751
+ gap: var(--bal-space-normal-desktop) !important
752
+
753
+ .gap-medium
754
+ gap: var(--bal-space-medium-desktop) !important
755
+
756
+ .gap-large
757
+ gap: var(--bal-space-large-desktop) !important
758
+
759
+ .gap-x-large
760
+ gap: var(--bal-space-x-large-desktop) !important
761
+
762
+ .gap-xx-large
763
+ gap: var(--bal-space-xx-large-desktop) !important
764
+
765
+ .gap-xxx-large
766
+ gap: var(--bal-space-xxx-large-desktop) !important
767
+
768
+ .gap-xxxx-large
769
+ gap: var(--bal-space-xxxx-large-desktop) !important
770
+
771
+ +desktop
772
+ .row-gap-xx-small
773
+ row-gap: var(--bal-space-xx-small-desktop) !important
774
+
775
+ .row-gap-x-small
776
+ row-gap: var(--bal-space-x-small-desktop) !important
777
+
778
+ .row-gap-small
779
+ row-gap: var(--bal-space-small-desktop) !important
780
+
781
+ .row-gap-normal
782
+ row-gap: var(--bal-space-normal-desktop) !important
783
+
784
+ .row-gap-medium
785
+ row-gap: var(--bal-space-medium-desktop) !important
786
+
787
+ .row-gap-large
788
+ row-gap: var(--bal-space-large-desktop) !important
789
+
790
+ .row-gap-x-large
791
+ row-gap: var(--bal-space-x-large-desktop) !important
792
+
793
+ .row-gap-xx-large
794
+ row-gap: var(--bal-space-xx-large-desktop) !important
795
+
796
+ .row-gap-xxx-large
797
+ row-gap: var(--bal-space-xxx-large-desktop) !important
798
+
799
+ .row-gap-xxxx-large
800
+ row-gap: var(--bal-space-xxxx-large-desktop) !important
801
+
802
+ +desktop
803
+ .column-gap-xx-small
804
+ column-gap: var(--bal-space-xx-small-desktop) !important
805
+
806
+ .column-gap-x-small
807
+ column-gap: var(--bal-space-x-small-desktop) !important
808
+
809
+ .column-gap-small
810
+ column-gap: var(--bal-space-small-desktop) !important
811
+
812
+ .column-gap-normal
813
+ column-gap: var(--bal-space-normal-desktop) !important
814
+
815
+ .column-gap-medium
816
+ column-gap: var(--bal-space-medium-desktop) !important
817
+
818
+ .column-gap-large
819
+ column-gap: var(--bal-space-large-desktop) !important
820
+
821
+ .column-gap-x-large
822
+ column-gap: var(--bal-space-x-large-desktop) !important
823
+
824
+ .column-gap-xx-large
825
+ column-gap: var(--bal-space-xx-large-desktop) !important
826
+
827
+ .column-gap-xxx-large
828
+ column-gap: var(--bal-space-xxx-large-desktop) !important
829
+
830
+ .column-gap-xxxx-large
831
+ column-gap: var(--bal-space-xxxx-large-desktop) !important