vrembem 4.0.0-next.4 → 4.0.0-next.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dev/index.css CHANGED
@@ -421,66 +421,100 @@ input::-moz-placeholder {
421
421
  font-size: 16px;
422
422
  }
423
423
 
424
+ :root {
425
+ --vb-button-size: 2.5rem;
426
+ --vb-button-padding: calc(0.5em - 1px) 1em;
427
+ --vb-button-gap: 0.5rem;
428
+ --vb-button-border-width: 1px;
429
+ --vb-button-border-radius: 0.25rem;
430
+ --vb-button-font-size: 1em;
431
+ --vb-button-font-weight: inherit;
432
+ --vb-button-line-height: 1.625;
433
+ --vb-button-transition-property: background, color, border-color, box-shadow;
434
+ --vb-button-transition-duration: 0.15s;
435
+ --vb-button-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
436
+ --vb-button-background: transparent;
437
+ --vb-button-background-hover: transparent;
438
+ --vb-button-background-active: transparent;
439
+ --vb-button-foreground: var(--vb-foreground, var(--vb-neutral-20, hsl(214, 20%, 20%)));
440
+ --vb-button-foreground-hover: ;
441
+ --vb-button-foreground-active: ;
442
+ --vb-button-border-color: var(--vb-border-color-dark, rgba(0, 0, 0, 0.2));
443
+ --vb-button-border-color-hover: var(--vb-border-color-darker, rgba(0, 0, 0, 0.3));
444
+ --vb-button-border-color-active: ;
445
+ --vb-button-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
446
+ --vb-button-box-shadow-focus: 0 0 0 0.2rem rgba(0, 0, 0, 0.15);
447
+ --vb-button-loading-size: 1em;
448
+ --vb-button-loading-border: 2px solid;
449
+ --vb-button-loading-animation-duration: 0.6s;
450
+ --vb-button-loading-animation-timing-function: linear;
451
+ --vb-button-disabled-opacity: 0.6;
452
+ }
453
+
424
454
  .button {
425
455
  position: relative;
426
456
  display: inline-flex;
457
+ gap: var(--vb-button-gap);
427
458
  align-items: center;
428
459
  justify-content: center;
429
- min-width: 2.5rem;
430
- height: 2.5rem;
431
- padding: calc(0.5em - 1px) 1em;
432
- transition-property: box-shadow, outline, outline-offset;
433
- transition-duration: 0.15s;
434
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
460
+ min-width: var(--vb-button-size);
461
+ height: var(--vb-button-size);
462
+ padding: var(--vb-button-padding);
463
+ transition-property: var(--vb-button-transition-property);
464
+ transition-duration: var(--vb-button-transition-duration);
465
+ transition-timing-function: var(--vb-button-transition-timing-function);
435
466
  outline: none;
436
- border: 1px solid var(--vb-border-color-dark, rgba(0, 0, 0, 0.2));
437
- border-radius: 0.25rem;
438
- background: transparent;
467
+ border: var(--vb-button-border-width) solid var(--vb-button-border-color);
468
+ border-radius: var(--vb-button-border-radius);
469
+ background: var(--vb-button-background);
439
470
  background-clip: border-box;
440
- box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
441
- color: var(--vb-foreground, var(--vb-neutral-20, hsl(214, 20%, 20%)));
471
+ box-shadow: var(--vb-button-box-shadow);
472
+ color: var(--vb-button-foreground);
442
473
  font-family: inherit;
443
- font-size: 1em;
444
- font-weight: inherit;
445
- line-height: 1.625;
474
+ font-size: var(--vb-button-font-size);
475
+ font-weight: var(--vb-button-font-weight);
476
+ line-height: var(--vb-button-font-height);
446
477
  text-decoration: none;
447
478
  white-space: nowrap;
448
479
  cursor: pointer;
449
480
  }
450
- .button > * + * {
451
- margin-left: 0.5rem;
452
- }
453
481
  .button:disabled:not(.is-loading) {
454
- opacity: 0.6;
482
+ opacity: var(--vb-button-disabled-opacity);
455
483
  pointer-events: none;
456
484
  }
457
485
  .button:hover {
458
- border-color: var(--vb-border-color-darker, rgba(0, 0, 0, 0.3));
459
- background-color: transparent;
486
+ border-color: var(--vb-button-border-color-hover);
487
+ background-color: var(--vb-button-background-hover);
488
+ box-shadow: var(--vb-button-box-shadow-hover);
489
+ color: var(--vb-button-foreground-hover);
460
490
  }
461
- .button:focus {
462
- border-color: var(--vb-border-color-darker, rgba(0, 0, 0, 0.3));
463
- background-color: transparent;
464
- box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15);
491
+ .button:focus-visible {
492
+ border-color: var(--vb-button-border-color-hover);
493
+ background-color: var(--vb-button-background-hover);
494
+ box-shadow: var(--vb-button-box-shadow-focus);
495
+ color: var(--vb-button-foreground-hover);
465
496
  }
466
497
  .button:active {
467
- background-color: rgba(0, 0, 0, 0.05);
498
+ border-color: var(--vb-button-border-color-active);
499
+ background-color: var(--vb-button-background-active);
500
+ box-shadow: var(--vb-button-box-shadow-active);
501
+ color: var(--vb-button-foreground-active);
468
502
  }
469
503
  .button.is-loading {
470
504
  color: transparent !important;
471
505
  pointer-events: none;
472
506
  }
473
507
  .button.is-loading::after {
474
- width: 1em;
475
- height: 1em;
508
+ width: var(--vb-button-loading-size);
509
+ height: var(--vb-button-loading-size);
476
510
  content: "";
477
511
  position: absolute;
478
- top: calc(50% - (1em * 0.5));
479
- left: calc(50% - (1em * 0.5));
480
- animation: spin 0.6s infinite linear;
481
- border: 2px solid;
512
+ top: calc(50% - var(--vb-button-loading-size) * 0.5);
513
+ left: calc(50% - var(--vb-button-loading-size) * 0.5);
514
+ animation: spin var(--vb-button-loading-animation-duration) infinite var(--vb-button-loading-animation-timing-function);
515
+ border: var(--vb-button-loading-border);
482
516
  border-radius: 9999px;
483
- border-color: var(--vb-foreground, var(--vb-neutral-20, hsl(214, 20%, 20%))) var(--vb-foreground, var(--vb-neutral-20, hsl(214, 20%, 20%))) transparent transparent;
517
+ border-color: var(--vb-button-foreground) var(--vb-button-foreground) transparent transparent;
484
518
  }
485
519
 
486
520
  @keyframes spin {
@@ -552,121 +586,83 @@ input::-moz-placeholder {
552
586
  }
553
587
  }
554
588
  .button_color_primary {
555
- border-color: transparent;
556
- background-color: hsl(152, 60%, 50%);
557
- box-shadow: 0 0 0 0 rgba(51, 204, 133, 0);
558
- color: white;
559
- }
560
- .button_color_primary:hover {
561
- border-color: transparent;
562
- background-color: #2eb877;
563
- }
564
- .button_color_primary:focus {
565
- border-color: transparent;
566
- background-color: #2eb877;
567
- box-shadow: 0 0 0 0.2rem rgba(51, 204, 133, 0.5);
568
- }
569
- .button_color_primary:active {
570
- border-color: transparent;
571
- background-color: #29a36a;
572
- }
573
- .button_color_primary.is-loading::after {
574
- border-color: white white transparent transparent;
589
+ --vb-button-background: var(--vb-primary-50, hsl(152, 60%, 50%));
590
+ --vb-button-background-hover: var(--vb-primary-40, hsl(152, 60%, 40%));
591
+ --vb-button-background-active: var(--vb-primary-30, hsl(152, 60%, 30%));
592
+ --vb-button-foreground: white;
593
+ --vb-button-foreground-hover: white;
594
+ --vb-button-foreground-active: white;
595
+ --vb-button-border-color: transparent;
596
+ --vb-button-border-color-hover: transparent;
597
+ --vb-button-border-color-active: transparent;
598
+ --vb-button-box-shadow: 0 0 0 0 hsl(152deg, 60%, 50%, 0%);
599
+ --vb-button-box-shadow-focus: 0 0 0 0.2rem hsl(152deg, 60%, 50%, 50%);
575
600
  }
576
601
 
577
602
  .button_color_secondary {
578
- border-color: transparent;
579
- background-color: hsl(214, 50%, 50%);
580
- box-shadow: 0 0 0 0 rgba(64, 119, 191, 0);
581
- color: white;
582
- }
583
- .button_color_secondary:hover {
584
- border-color: transparent;
585
- background-color: #396bac;
586
- }
587
- .button_color_secondary:focus {
588
- border-color: transparent;
589
- background-color: #396bac;
590
- box-shadow: 0 0 0 0.2rem rgba(64, 119, 191, 0.5);
591
- }
592
- .button_color_secondary:active {
593
- border-color: transparent;
594
- background-color: #335f99;
595
- }
596
- .button_color_secondary.is-loading::after {
597
- border-color: white white transparent transparent;
603
+ --vb-button-background: var(--vb-secondary-50, hsl(214, 50%, 50%));
604
+ --vb-button-background-hover: var(--vb-secondary-40, hsl(214, 50%, 40%));
605
+ --vb-button-background-active: var(--vb-secondary-30, hsl(214, 50%, 30%));
606
+ --vb-button-foreground: white;
607
+ --vb-button-foreground-hover: white;
608
+ --vb-button-foreground-active: white;
609
+ --vb-button-border-color: transparent;
610
+ --vb-button-border-color-hover: transparent;
611
+ --vb-button-border-color-active: transparent;
612
+ --vb-button-box-shadow: 0 0 0 0 hsl(214deg, 50%, 50%, 0%);
613
+ --vb-button-box-shadow-focus: 0 0 0 0.2rem hsl(214deg, 50%, 50%, 50%);
598
614
  }
599
615
 
600
616
  .button_color_neutral {
601
- border-color: transparent;
602
- background-color: hsl(214, 20%, 50%);
603
- box-shadow: 0 0 0 0 rgba(102, 124, 153, 0);
604
- color: white;
605
- }
606
- .button_color_neutral:hover {
607
- border-color: transparent;
608
- background-color: #5c708a;
609
- }
610
- .button_color_neutral:focus {
611
- border-color: transparent;
612
- background-color: #5c708a;
613
- box-shadow: 0 0 0 0.2rem rgba(102, 124, 153, 0.5);
614
- }
615
- .button_color_neutral:active {
616
- border-color: transparent;
617
- background-color: #52637a;
618
- }
619
- .button_color_neutral.is-loading::after {
620
- border-color: white white transparent transparent;
617
+ --vb-button-background: var(--vb-neutral-50, hsl(214, 20%, 50%));
618
+ --vb-button-background-hover: var(--vb-neutral-40, hsl(214, 20%, 40%));
619
+ --vb-button-background-active: var(--vb-neutral-30, hsl(214, 20%, 30%));
620
+ --vb-button-foreground: white;
621
+ --vb-button-foreground-hover: white;
622
+ --vb-button-foreground-active: white;
623
+ --vb-button-border-color: transparent;
624
+ --vb-button-border-color-hover: transparent;
625
+ --vb-button-border-color-active: transparent;
626
+ --vb-button-box-shadow: 0 0 0 0 hsl(214deg, 20%, 50%, 0%);
627
+ --vb-button-box-shadow-focus: 0 0 0 0.2rem hsl(214deg, 20%, 50%, 50%);
621
628
  }
622
629
 
623
630
  .button_color_important {
624
- border-color: transparent;
625
- background-color: hsl(0, 80%, 50%);
626
- box-shadow: 0 0 0 0 rgba(230, 26, 26, 0);
627
- color: white;
628
- }
629
- .button_color_important:hover {
630
- border-color: transparent;
631
- background-color: #cf1717;
632
- }
633
- .button_color_important:focus {
634
- border-color: transparent;
635
- background-color: #cf1717;
636
- box-shadow: 0 0 0 0.2rem rgba(230, 26, 26, 0.5);
637
- }
638
- .button_color_important:active {
639
- border-color: transparent;
640
- background-color: #b81414;
641
- }
642
- .button_color_important.is-loading::after {
643
- border-color: white white transparent transparent;
631
+ --vb-button-background: var(--vb-important-50, hsl(0, 80%, 50%));
632
+ --vb-button-background-hover: var(--vb-important-40, hsl(0, 80%, 40%));
633
+ --vb-button-background-active: var(--vb-important-30, hsl(0, 80%, 30%));
634
+ --vb-button-foreground: white;
635
+ --vb-button-foreground-hover: white;
636
+ --vb-button-foreground-active: white;
637
+ --vb-button-border-color: transparent;
638
+ --vb-button-border-color-hover: transparent;
639
+ --vb-button-border-color-active: transparent;
640
+ --vb-button-box-shadow: 0 0 0 0 hsl(0deg, 80%, 50%, 0%);
641
+ --vb-button-box-shadow-focus: 0 0 0 0.2rem hsl(0deg, 80%, 50%, 50%);
644
642
  }
645
643
 
646
644
  .button_icon {
647
- padding: calc(0.5em - 1px);
645
+ --vb-button-padding: calc(0.5em - 1px);
648
646
  }
649
647
  .button_icon.button_size_sm {
650
- padding: calc(0.25rem - 1px);
648
+ --vb-button-padding: calc(0.25rem - 1px);
651
649
  }
652
650
  .button_icon.button_size_lg {
653
- padding: calc(0.648rem - 1px);
651
+ --vb-button-padding: calc(0.648rem - 1px);
654
652
  }
655
653
 
656
654
  .button_size_sm {
657
- min-width: 1.875rem;
658
- height: 1.875rem;
659
- padding: calc(0.25rem - 1px) 0.5rem;
660
- font-size: 0.875rem;
661
- line-height: 1.375;
655
+ --vb-button-size: 1.875rem;
656
+ --vb-button-padding: calc(0.25rem - 1px) 0.5rem;
657
+ --vb-button-font-size: 0.875rem;
658
+ --vb-button-line-height: 1.375;
662
659
  }
663
660
 
664
661
  .button_size_lg {
665
- min-width: 3.125rem;
666
- height: 3.125rem;
667
- padding: calc(0.648rem - 1px) 1.5rem;
668
- font-size: 1.125rem;
669
- line-height: 1.875;
662
+ --vb-button-size: 3.125rem;
663
+ --vb-button-padding: calc(0.648rem - 1px) 1.5rem;
664
+ --vb-button-font-size: 1.125rem;
665
+ --vb-button-line-height: 1.875;
670
666
  }
671
667
 
672
668
  .card {
@@ -1976,203 +1972,86 @@ input::-moz-placeholder {
1976
1972
  }
1977
1973
 
1978
1974
  .level {
1979
- margin-top: -0.5em;
1980
- margin-left: -0.5em;
1975
+ gap: 0.5em;
1981
1976
  display: flex;
1982
1977
  flex-wrap: wrap;
1983
1978
  align-items: center;
1984
1979
  }
1985
- .level > * {
1986
- margin-top: 0.5em;
1987
- margin-left: 0.5em;
1988
- }
1989
- .level + .level {
1990
- margin-top: 0;
1991
- }
1992
1980
  .level > * {
1993
1981
  flex: 0 0 auto;
1994
- max-width: calc(100% - 0.5em);
1982
+ max-width: 100%;
1995
1983
  }
1996
1984
 
1997
1985
  .level_gap_none {
1998
- margin-top: 0;
1999
- margin-left: 0;
2000
- }
2001
- .level_gap_none > * {
2002
- margin-top: 0;
2003
- margin-left: 0;
2004
- }
2005
- .level_gap_none > * {
2006
- max-width: 100%;
1986
+ gap: 0;
2007
1987
  }
2008
1988
 
2009
1989
  .level_gap-x_none {
2010
- margin-left: 0;
2011
- }
2012
- .level_gap-x_none > * {
2013
- margin-left: 0;
2014
- }
2015
- .level_gap-x_none > * {
2016
- max-width: 100%;
1990
+ column-gap: 0;
2017
1991
  }
2018
1992
 
2019
1993
  .level_gap-y_none {
2020
- margin-top: 0;
2021
- }
2022
- .level_gap-y_none > * {
2023
- margin-top: 0;
1994
+ row-gap: 0;
2024
1995
  }
2025
1996
 
2026
1997
  .level_gap_xs {
2027
- margin-top: -1px;
2028
- margin-left: -1px;
2029
- }
2030
- .level_gap_xs > * {
2031
- margin-top: 1px;
2032
- margin-left: 1px;
2033
- }
2034
- .level_gap_xs > * {
2035
- max-width: calc(100% - 1px);
1998
+ gap: 1px;
2036
1999
  }
2037
2000
 
2038
2001
  .level_gap-x_xs {
2039
- margin-left: -1px;
2040
- }
2041
- .level_gap-x_xs > * {
2042
- margin-left: 1px;
2043
- }
2044
- .level_gap-x_xs > * {
2045
- max-width: calc(100% - 1px);
2002
+ column-gap: 1px;
2046
2003
  }
2047
2004
 
2048
2005
  .level_gap-y_xs {
2049
- margin-top: -1px;
2050
- }
2051
- .level_gap-y_xs > * {
2052
- margin-top: 1px;
2006
+ row-gap: 1px;
2053
2007
  }
2054
2008
 
2055
2009
  .level_gap_sm {
2056
- margin-top: -0.25em;
2057
- margin-left: -0.25em;
2058
- }
2059
- .level_gap_sm > * {
2060
- margin-top: 0.25em;
2061
- margin-left: 0.25em;
2062
- }
2063
- .level_gap_sm > * {
2064
- max-width: calc(100% - 0.25em);
2010
+ gap: 0.25em;
2065
2011
  }
2066
2012
 
2067
2013
  .level_gap-x_sm {
2068
- margin-left: -0.25em;
2069
- }
2070
- .level_gap-x_sm > * {
2071
- margin-left: 0.25em;
2072
- }
2073
- .level_gap-x_sm > * {
2074
- max-width: calc(100% - 0.25em);
2014
+ column-gap: 0.25em;
2075
2015
  }
2076
2016
 
2077
2017
  .level_gap-y_sm {
2078
- margin-top: -0.25em;
2079
- }
2080
- .level_gap-y_sm > * {
2081
- margin-top: 0.25em;
2018
+ row-gap: 0.25em;
2082
2019
  }
2083
2020
 
2084
2021
  .level_gap_md {
2085
- margin-top: -0.5em;
2086
- margin-left: -0.5em;
2087
- }
2088
- .level_gap_md > * {
2089
- margin-top: 0.5em;
2090
- margin-left: 0.5em;
2091
- }
2092
- .level_gap_md > * {
2093
- max-width: calc(100% - 0.5em);
2022
+ gap: 0.5em;
2094
2023
  }
2095
2024
 
2096
2025
  .level_gap-x_md {
2097
- margin-left: -0.5em;
2098
- }
2099
- .level_gap-x_md > * {
2100
- margin-left: 0.5em;
2101
- }
2102
- .level_gap-x_md > * {
2103
- max-width: calc(100% - 0.5em);
2026
+ column-gap: 0.5em;
2104
2027
  }
2105
2028
 
2106
2029
  .level_gap-y_md {
2107
- margin-top: -0.5em;
2108
- }
2109
- .level_gap-y_md > * {
2110
- margin-top: 0.5em;
2030
+ row-gap: 0.5em;
2111
2031
  }
2112
2032
 
2113
2033
  .level_gap_lg {
2114
- margin-top: -1em;
2115
- margin-left: -1em;
2116
- }
2117
- .level_gap_lg > * {
2118
- margin-top: 1em;
2119
- margin-left: 1em;
2120
- }
2121
- .level_gap_lg > * {
2122
- max-width: calc(100% - 1em);
2034
+ gap: 1em;
2123
2035
  }
2124
2036
 
2125
2037
  .level_gap-x_lg {
2126
- margin-left: -1em;
2127
- }
2128
- .level_gap-x_lg > * {
2129
- margin-left: 1em;
2130
- }
2131
- .level_gap-x_lg > * {
2132
- max-width: calc(100% - 1em);
2038
+ column-gap: 1em;
2133
2039
  }
2134
2040
 
2135
2041
  .level_gap-y_lg {
2136
- margin-top: -1em;
2137
- }
2138
- .level_gap-y_lg > * {
2139
- margin-top: 1em;
2042
+ row-gap: 1em;
2140
2043
  }
2141
2044
 
2142
2045
  .level_gap_xl {
2143
- margin-top: -1.5em;
2144
- margin-left: -1.5em;
2145
- }
2146
- .level_gap_xl > * {
2147
- margin-top: 1.5em;
2148
- margin-left: 1.5em;
2149
- }
2150
- .level_gap_xl > * {
2151
- max-width: calc(100% - 1.5em);
2046
+ gap: 1.5em;
2152
2047
  }
2153
2048
 
2154
2049
  .level_gap-x_xl {
2155
- margin-left: -1.5em;
2156
- }
2157
- .level_gap-x_xl > * {
2158
- margin-left: 1.5em;
2159
- }
2160
- .level_gap-x_xl > * {
2161
- max-width: calc(100% - 1.5em);
2050
+ column-gap: 1.5em;
2162
2051
  }
2163
2052
 
2164
2053
  .level_gap-y_xl {
2165
- margin-top: -1.5em;
2166
- }
2167
- .level_gap-y_xl > * {
2168
- margin-top: 1.5em;
2169
- }
2170
-
2171
- .level_nowrap {
2172
- flex-wrap: nowrap;
2173
- }
2174
- .level_nowrap > * {
2175
- flex-shrink: 1;
2054
+ row-gap: 1.5em;
2176
2055
  }
2177
2056
 
2178
2057
  .media {
@@ -5161,164 +5040,87 @@ input::-moz-placeholder {
5161
5040
  }
5162
5041
 
5163
5042
  .flex-gap {
5164
- margin-top: -1em !important;
5165
- margin-left: -1em !important;
5166
- }
5167
- .flex-gap > * {
5168
- margin-top: 1em !important;
5169
- margin-left: 1em !important;
5043
+ gap: 1em !important;
5170
5044
  }
5171
5045
 
5172
5046
  .flex-gap-none {
5173
- margin-top: 0 !important;
5174
- margin-left: 0 !important;
5175
- }
5176
- .flex-gap-none > * {
5177
- margin-top: 0 !important;
5178
- margin-left: 0 !important;
5047
+ gap: 0 !important;
5179
5048
  }
5180
5049
 
5181
5050
  .flex-gap-xs {
5182
- margin-top: -0.25em !important;
5183
- margin-left: -0.25em !important;
5184
- }
5185
- .flex-gap-xs > * {
5186
- margin-top: 0.25em !important;
5187
- margin-left: 0.25em !important;
5051
+ gap: 0.25em !important;
5188
5052
  }
5189
5053
 
5190
5054
  .flex-gap-sm {
5191
- margin-top: -0.5em !important;
5192
- margin-left: -0.5em !important;
5193
- }
5194
- .flex-gap-sm > * {
5195
- margin-top: 0.5em !important;
5196
- margin-left: 0.5em !important;
5055
+ gap: 0.5em !important;
5197
5056
  }
5198
5057
 
5199
5058
  .flex-gap-md {
5200
- margin-top: -1em !important;
5201
- margin-left: -1em !important;
5202
- }
5203
- .flex-gap-md > * {
5204
- margin-top: 1em !important;
5205
- margin-left: 1em !important;
5059
+ gap: 1em !important;
5206
5060
  }
5207
5061
 
5208
5062
  .flex-gap-lg {
5209
- margin-top: -1.5em !important;
5210
- margin-left: -1.5em !important;
5211
- }
5212
- .flex-gap-lg > * {
5213
- margin-top: 1.5em !important;
5214
- margin-left: 1.5em !important;
5063
+ gap: 1.5em !important;
5215
5064
  }
5216
5065
 
5217
5066
  .flex-gap-xl {
5218
- margin-top: -2em !important;
5219
- margin-left: -2em !important;
5220
- }
5221
- .flex-gap-xl > * {
5222
- margin-top: 2em !important;
5223
- margin-left: 2em !important;
5067
+ gap: 2em !important;
5224
5068
  }
5225
5069
 
5226
5070
  .flex-gap-x {
5227
- margin-left: -1em !important;
5228
- }
5229
- .flex-gap-x > * {
5230
- margin-left: 1em !important;
5071
+ column-gap: 1em !important;
5231
5072
  }
5232
5073
 
5233
5074
  .flex-gap-x-none {
5234
- margin-left: 0 !important;
5235
- }
5236
- .flex-gap-x-none > * {
5237
- margin-left: 0 !important;
5075
+ column-gap: 0 !important;
5238
5076
  }
5239
5077
 
5240
5078
  .flex-gap-x-xs {
5241
- margin-left: -0.25em !important;
5242
- }
5243
- .flex-gap-x-xs > * {
5244
- margin-left: 0.25em !important;
5079
+ column-gap: 0.25em !important;
5245
5080
  }
5246
5081
 
5247
5082
  .flex-gap-x-sm {
5248
- margin-left: -0.5em !important;
5249
- }
5250
- .flex-gap-x-sm > * {
5251
- margin-left: 0.5em !important;
5083
+ column-gap: 0.5em !important;
5252
5084
  }
5253
5085
 
5254
5086
  .flex-gap-x-md {
5255
- margin-left: -1em !important;
5256
- }
5257
- .flex-gap-x-md > * {
5258
- margin-left: 1em !important;
5087
+ column-gap: 1em !important;
5259
5088
  }
5260
5089
 
5261
5090
  .flex-gap-x-lg {
5262
- margin-left: -1.5em !important;
5263
- }
5264
- .flex-gap-x-lg > * {
5265
- margin-left: 1.5em !important;
5091
+ column-gap: 1.5em !important;
5266
5092
  }
5267
5093
 
5268
5094
  .flex-gap-x-xl {
5269
- margin-left: -2em !important;
5270
- }
5271
- .flex-gap-x-xl > * {
5272
- margin-left: 2em !important;
5095
+ column-gap: 2em !important;
5273
5096
  }
5274
5097
 
5275
5098
  .flex-gap-y {
5276
- margin-top: -1em !important;
5277
- }
5278
- .flex-gap-y > * {
5279
- margin-top: 1em !important;
5099
+ row-gap: 1em !important;
5280
5100
  }
5281
5101
 
5282
5102
  .flex-gap-y-none {
5283
- margin-top: 0 !important;
5284
- }
5285
- .flex-gap-y-none > * {
5286
- margin-top: 0 !important;
5103
+ row-gap: 0 !important;
5287
5104
  }
5288
5105
 
5289
5106
  .flex-gap-y-xs {
5290
- margin-top: -0.25em !important;
5291
- }
5292
- .flex-gap-y-xs > * {
5293
- margin-top: 0.25em !important;
5107
+ row-gap: 0.25em !important;
5294
5108
  }
5295
5109
 
5296
5110
  .flex-gap-y-sm {
5297
- margin-top: -0.5em !important;
5298
- }
5299
- .flex-gap-y-sm > * {
5300
- margin-top: 0.5em !important;
5111
+ row-gap: 0.5em !important;
5301
5112
  }
5302
5113
 
5303
5114
  .flex-gap-y-md {
5304
- margin-top: -1em !important;
5305
- }
5306
- .flex-gap-y-md > * {
5307
- margin-top: 1em !important;
5115
+ row-gap: 1em !important;
5308
5116
  }
5309
5117
 
5310
5118
  .flex-gap-y-lg {
5311
- margin-top: -1.5em !important;
5312
- }
5313
- .flex-gap-y-lg > * {
5314
- margin-top: 1.5em !important;
5119
+ row-gap: 1.5em !important;
5315
5120
  }
5316
5121
 
5317
5122
  .flex-gap-y-xl {
5318
- margin-top: -2em !important;
5319
- }
5320
- .flex-gap-y-xl > * {
5321
- margin-top: 2em !important;
5123
+ row-gap: 2em !important;
5322
5124
  }
5323
5125
 
5324
5126
  .font-family-sans {
@@ -5334,7 +5136,7 @@ input::-moz-placeholder {
5334
5136
  }
5335
5137
 
5336
5138
  .font-size-base {
5337
- font-size: 16px !important;
5139
+ font-size: 1rem !important;
5338
5140
  }
5339
5141
 
5340
5142
  .font-size-sm {