@dialpad/dialtone 7.24.1 → 7.25.1
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/lib/build/js/dialtone_migration_helper/configs/tokens-migration.mjs +13 -0
- package/lib/build/js/dialtone_migration_helper/helpers.mjs +214 -0
- package/lib/build/js/dialtone_migration_helper/index.mjs +131 -0
- package/lib/build/less/components/root-layout.less +90 -3
- package/lib/build/less/utilities/colors.less +6 -0
- package/lib/build/less/variables/colors.less +4 -0
- package/lib/build/less/variables/sizes.less +0 -2
- package/lib/dist/css/dialtone.css +557 -12
- package/lib/dist/css/dialtone.min.css +1 -1
- package/lib/dist/js/dialtone_migration_helper/configs/tokens-migration.mjs +13 -0
- package/lib/dist/js/dialtone_migration_helper/helpers.mjs +214 -0
- package/lib/dist/js/dialtone_migration_helper/index.mjs +131 -0
- package/package.json +10 -3
|
@@ -417,16 +417,6 @@ body {
|
|
|
417
417
|
--size-700: calc(0.8rem * 8);
|
|
418
418
|
--size-800: calc(0.8rem * 16);
|
|
419
419
|
}
|
|
420
|
-
body {
|
|
421
|
-
--size-100: calc(0.8rem / 8);
|
|
422
|
-
--size-200: calc(0.8rem / 4);
|
|
423
|
-
--size-300: calc(0.8rem / 2);
|
|
424
|
-
--size-400: 0.8rem;
|
|
425
|
-
--size-500: calc(0.8rem * 2);
|
|
426
|
-
--size-600: calc(0.8rem * 4);
|
|
427
|
-
--size-700: calc(0.8rem * 8);
|
|
428
|
-
--size-800: calc(0.8rem * 16);
|
|
429
|
-
}
|
|
430
420
|
body {
|
|
431
421
|
--size-100-16: calc(1.6rem / 8);
|
|
432
422
|
--size-200-16: calc(1.6rem / 4);
|
|
@@ -3655,10 +3645,51 @@ legend .d-label {
|
|
|
3655
3645
|
--icon-size: var(--icon-size-100);
|
|
3656
3646
|
}
|
|
3657
3647
|
.d-root-layout {
|
|
3658
|
-
display:
|
|
3659
|
-
|
|
3648
|
+
display: grid;
|
|
3649
|
+
grid-template: 'header' auto 'body' 1fr 'footer' auto / 1fr;
|
|
3650
|
+
min-height: 100vh;
|
|
3651
|
+
}
|
|
3652
|
+
.d-root-layout--fixed {
|
|
3660
3653
|
height: 100vh;
|
|
3661
3654
|
}
|
|
3655
|
+
.d-root-layout__header {
|
|
3656
|
+
grid-area: header;
|
|
3657
|
+
}
|
|
3658
|
+
.d-root-layout__header--sticky {
|
|
3659
|
+
position: sticky;
|
|
3660
|
+
top: 0;
|
|
3661
|
+
}
|
|
3662
|
+
.d-root-layout__body {
|
|
3663
|
+
display: flex;
|
|
3664
|
+
grid-area: body;
|
|
3665
|
+
overflow: auto;
|
|
3666
|
+
box-shadow: none;
|
|
3667
|
+
}
|
|
3668
|
+
.d-root-layout__body--invert {
|
|
3669
|
+
flex-direction: row-reverse;
|
|
3670
|
+
}
|
|
3671
|
+
.d-root-layout__sidebar {
|
|
3672
|
+
box-shadow: none;
|
|
3673
|
+
}
|
|
3674
|
+
.d-root-layout__sidebar--sticky {
|
|
3675
|
+
position: sticky;
|
|
3676
|
+
top: 0;
|
|
3677
|
+
height: 100%;
|
|
3678
|
+
overflow: auto;
|
|
3679
|
+
}
|
|
3680
|
+
.d-root-layout__content {
|
|
3681
|
+
flex: 1;
|
|
3682
|
+
box-shadow: none;
|
|
3683
|
+
}
|
|
3684
|
+
.d-root-layout__content.focus-visible.js-focus-visible, .js-focus-visible .d-root-layout__content.focus-visible {
|
|
3685
|
+
box-shadow: none;
|
|
3686
|
+
}
|
|
3687
|
+
.d-root-layout__content:focus-visible {
|
|
3688
|
+
box-shadow: none;
|
|
3689
|
+
}
|
|
3690
|
+
.d-root-layout__footer {
|
|
3691
|
+
grid-area: footer;
|
|
3692
|
+
}
|
|
3662
3693
|
.d-stack {
|
|
3663
3694
|
--stack-gap: 0;
|
|
3664
3695
|
--stack-direction: column;
|
|
@@ -13614,6 +13645,42 @@ body.theme-dark .d\:d-bgc-black-700 {
|
|
|
13614
13645
|
.fv\:d-bgc-moderate-opaque:focus-visible {
|
|
13615
13646
|
background-color: var(--bgc-moderate-opaque);
|
|
13616
13647
|
}
|
|
13648
|
+
.d-bgc-strong-opaque {
|
|
13649
|
+
background-color: var(--bgc-strong-opaque);
|
|
13650
|
+
}
|
|
13651
|
+
.h\:d-bgc-strong-opaque:hover {
|
|
13652
|
+
background-color: var(--bgc-strong-opaque);
|
|
13653
|
+
}
|
|
13654
|
+
.f\:d-bgc-strong-opaque:focus {
|
|
13655
|
+
background-color: var(--bgc-strong-opaque);
|
|
13656
|
+
}
|
|
13657
|
+
.f\:d-bgc-strong-opaque:focus-within {
|
|
13658
|
+
background-color: var(--bgc-strong-opaque);
|
|
13659
|
+
}
|
|
13660
|
+
.fv\:d-bgc-strong-opaque.focus-visible.js-focus-visible, .js-focus-visible .fv\:d-bgc-strong-opaque.focus-visible {
|
|
13661
|
+
background-color: var(--bgc-strong-opaque);
|
|
13662
|
+
}
|
|
13663
|
+
.fv\:d-bgc-strong-opaque:focus-visible {
|
|
13664
|
+
background-color: var(--bgc-strong-opaque);
|
|
13665
|
+
}
|
|
13666
|
+
.d-bgc-contrast-opaque {
|
|
13667
|
+
background-color: var(--bgc-contrast-opaque);
|
|
13668
|
+
}
|
|
13669
|
+
.h\:d-bgc-contrast-opaque:hover {
|
|
13670
|
+
background-color: var(--bgc-contrast-opaque);
|
|
13671
|
+
}
|
|
13672
|
+
.f\:d-bgc-contrast-opaque:focus {
|
|
13673
|
+
background-color: var(--bgc-contrast-opaque);
|
|
13674
|
+
}
|
|
13675
|
+
.f\:d-bgc-contrast-opaque:focus-within {
|
|
13676
|
+
background-color: var(--bgc-contrast-opaque);
|
|
13677
|
+
}
|
|
13678
|
+
.fv\:d-bgc-contrast-opaque.focus-visible.js-focus-visible, .js-focus-visible .fv\:d-bgc-contrast-opaque.focus-visible {
|
|
13679
|
+
background-color: var(--bgc-contrast-opaque);
|
|
13680
|
+
}
|
|
13681
|
+
.fv\:d-bgc-contrast-opaque:focus-visible {
|
|
13682
|
+
background-color: var(--bgc-contrast-opaque);
|
|
13683
|
+
}
|
|
13617
13684
|
.d-bgc-bold-opaque {
|
|
13618
13685
|
background-color: var(--bgc-bold-opaque);
|
|
13619
13686
|
}
|
|
@@ -22139,8 +22206,10 @@ body {
|
|
|
22139
22206
|
--bgc-bold-opaque: hsla(var(--black-900-hsl) / 0.18);
|
|
22140
22207
|
--bgc-strong: var(--black-600);
|
|
22141
22208
|
--bgc-strong-hsl: var(--black-600-hsl);
|
|
22209
|
+
--bgc-strong-opaque: hsla(var(--black-900-hsl) / 0.67);
|
|
22142
22210
|
--bgc-contrast: var(--black-800);
|
|
22143
22211
|
--bgc-contrast-hsl: var(--black-800-hsl);
|
|
22212
|
+
--bgc-contrast-opaque: hsla(var(--black-900-hsl) / 0.87);
|
|
22144
22213
|
--bc-subtle: rgba(0, 0, 0, 0.1);
|
|
22145
22214
|
--bc-default: rgba(0, 0, 0, 0.18);
|
|
22146
22215
|
--bc-moderate: rgba(0, 0, 0, 0.34);
|
|
@@ -22447,10 +22516,18 @@ body.theme-dark {
|
|
|
22447
22516
|
--bc-moderate: rgba(255, 255, 255, 0.4);
|
|
22448
22517
|
--bc-bold: rgba(255, 255, 255, 0.6);
|
|
22449
22518
|
--bgc-moderate-opaque: var(--bgc-moderate);
|
|
22519
|
+
--bgc-strong-opaque: var(--bgc-strong);
|
|
22520
|
+
--bgc-contrast-opaque: var(--bgc-contrast);
|
|
22450
22521
|
--fc-critical: var(--red-400);
|
|
22451
22522
|
--fc-warning: var(--gold-400);
|
|
22452
22523
|
}
|
|
22453
22524
|
@media (max-width: 480px) {
|
|
22525
|
+
.d-root-layout__responsive--sm .d-root-layout__body {
|
|
22526
|
+
flex-direction: column;
|
|
22527
|
+
}
|
|
22528
|
+
.d-root-layout__responsive--sm .d-root-layout__body--invert {
|
|
22529
|
+
flex-direction: column-reverse;
|
|
22530
|
+
}
|
|
22454
22531
|
.sm\:d-stack {
|
|
22455
22532
|
--stack-gap: 0;
|
|
22456
22533
|
--stack-direction: column;
|
|
@@ -22961,6 +23038,120 @@ body.theme-dark {
|
|
|
22961
23038
|
.sm\:d-pr-unset {
|
|
22962
23039
|
padding-right: unset !important;
|
|
22963
23040
|
}
|
|
23041
|
+
.sm\:d-pb0 {
|
|
23042
|
+
padding-bottom: 0 !important;
|
|
23043
|
+
}
|
|
23044
|
+
.sm\:d-pb1 {
|
|
23045
|
+
padding-bottom: 0.1rem !important;
|
|
23046
|
+
}
|
|
23047
|
+
.sm\:d-pb2 {
|
|
23048
|
+
padding-bottom: 0.2rem !important;
|
|
23049
|
+
}
|
|
23050
|
+
.sm\:d-pb4 {
|
|
23051
|
+
padding-bottom: 0.4rem !important;
|
|
23052
|
+
}
|
|
23053
|
+
.sm\:d-pb6 {
|
|
23054
|
+
padding-bottom: 0.6rem !important;
|
|
23055
|
+
}
|
|
23056
|
+
.sm\:d-pb8 {
|
|
23057
|
+
padding-bottom: 0.8rem !important;
|
|
23058
|
+
}
|
|
23059
|
+
.sm\:d-pb12 {
|
|
23060
|
+
padding-bottom: 1.2rem !important;
|
|
23061
|
+
}
|
|
23062
|
+
.sm\:d-pb16 {
|
|
23063
|
+
padding-bottom: 1.6rem !important;
|
|
23064
|
+
}
|
|
23065
|
+
.sm\:d-pb24 {
|
|
23066
|
+
padding-bottom: 2.4rem !important;
|
|
23067
|
+
}
|
|
23068
|
+
.sm\:d-pb32 {
|
|
23069
|
+
padding-bottom: 3.2rem !important;
|
|
23070
|
+
}
|
|
23071
|
+
.sm\:d-pb48 {
|
|
23072
|
+
padding-bottom: 4.8rem !important;
|
|
23073
|
+
}
|
|
23074
|
+
.sm\:d-pb64 {
|
|
23075
|
+
padding-bottom: 6.4rem !important;
|
|
23076
|
+
}
|
|
23077
|
+
.sm\:d-pb72 {
|
|
23078
|
+
padding-bottom: 7.2rem !important;
|
|
23079
|
+
}
|
|
23080
|
+
.sm\:d-pb84 {
|
|
23081
|
+
padding-bottom: 8.4rem !important;
|
|
23082
|
+
}
|
|
23083
|
+
.sm\:d-pb96 {
|
|
23084
|
+
padding-bottom: 9.6rem !important;
|
|
23085
|
+
}
|
|
23086
|
+
.sm\:d-pb102 {
|
|
23087
|
+
padding-bottom: 10.2rem !important;
|
|
23088
|
+
}
|
|
23089
|
+
.sm\:d-pb114 {
|
|
23090
|
+
padding-bottom: 11.4rem !important;
|
|
23091
|
+
}
|
|
23092
|
+
.sm\:d-pb128 {
|
|
23093
|
+
padding-bottom: 12.8rem !important;
|
|
23094
|
+
}
|
|
23095
|
+
.sm\:d-pb-unset {
|
|
23096
|
+
padding-bottom: unset !important;
|
|
23097
|
+
}
|
|
23098
|
+
.sm\:d-pl0 {
|
|
23099
|
+
padding-left: 0 !important;
|
|
23100
|
+
}
|
|
23101
|
+
.sm\:d-pl1 {
|
|
23102
|
+
padding-left: 0.1rem !important;
|
|
23103
|
+
}
|
|
23104
|
+
.sm\:d-pl2 {
|
|
23105
|
+
padding-left: 0.2rem !important;
|
|
23106
|
+
}
|
|
23107
|
+
.sm\:d-pl4 {
|
|
23108
|
+
padding-left: 0.4rem !important;
|
|
23109
|
+
}
|
|
23110
|
+
.sm\:d-pl6 {
|
|
23111
|
+
padding-left: 0.6rem !important;
|
|
23112
|
+
}
|
|
23113
|
+
.sm\:d-pl8 {
|
|
23114
|
+
padding-left: 0.8rem !important;
|
|
23115
|
+
}
|
|
23116
|
+
.sm\:d-pl12 {
|
|
23117
|
+
padding-left: 1.2rem !important;
|
|
23118
|
+
}
|
|
23119
|
+
.sm\:d-pl16 {
|
|
23120
|
+
padding-left: 1.6rem !important;
|
|
23121
|
+
}
|
|
23122
|
+
.sm\:d-pl24 {
|
|
23123
|
+
padding-left: 2.4rem !important;
|
|
23124
|
+
}
|
|
23125
|
+
.sm\:d-pl32 {
|
|
23126
|
+
padding-left: 3.2rem !important;
|
|
23127
|
+
}
|
|
23128
|
+
.sm\:d-pl48 {
|
|
23129
|
+
padding-left: 4.8rem !important;
|
|
23130
|
+
}
|
|
23131
|
+
.sm\:d-pl64 {
|
|
23132
|
+
padding-left: 6.4rem !important;
|
|
23133
|
+
}
|
|
23134
|
+
.sm\:d-pl72 {
|
|
23135
|
+
padding-left: 7.2rem !important;
|
|
23136
|
+
}
|
|
23137
|
+
.sm\:d-pl84 {
|
|
23138
|
+
padding-left: 8.4rem !important;
|
|
23139
|
+
}
|
|
23140
|
+
.sm\:d-pl96 {
|
|
23141
|
+
padding-left: 9.6rem !important;
|
|
23142
|
+
}
|
|
23143
|
+
.sm\:d-pl102 {
|
|
23144
|
+
padding-left: 10.2rem !important;
|
|
23145
|
+
}
|
|
23146
|
+
.sm\:d-pl114 {
|
|
23147
|
+
padding-left: 11.4rem !important;
|
|
23148
|
+
}
|
|
23149
|
+
.sm\:d-pl128 {
|
|
23150
|
+
padding-left: 12.8rem !important;
|
|
23151
|
+
}
|
|
23152
|
+
.sm\:d-pl-unset {
|
|
23153
|
+
padding-left: unset !important;
|
|
23154
|
+
}
|
|
22964
23155
|
.sm\:d-fs-100 {
|
|
22965
23156
|
font-size: var(--fs-100) !important;
|
|
22966
23157
|
}
|
|
@@ -22978,6 +23169,12 @@ body.theme-dark {
|
|
|
22978
23169
|
}
|
|
22979
23170
|
}
|
|
22980
23171
|
@media (max-width: 640px) {
|
|
23172
|
+
.d-root-layout__responsive--md .d-root-layout__body {
|
|
23173
|
+
flex-direction: column;
|
|
23174
|
+
}
|
|
23175
|
+
.d-root-layout__responsive--md .d-root-layout__body--invert {
|
|
23176
|
+
flex-direction: column-reverse;
|
|
23177
|
+
}
|
|
22981
23178
|
.md\:d-stack {
|
|
22982
23179
|
--stack-gap: 0;
|
|
22983
23180
|
--stack-direction: column;
|
|
@@ -23488,6 +23685,120 @@ body.theme-dark {
|
|
|
23488
23685
|
.md\:d-pr-unset {
|
|
23489
23686
|
padding-right: unset !important;
|
|
23490
23687
|
}
|
|
23688
|
+
.md\:d-pb0 {
|
|
23689
|
+
padding-bottom: 0 !important;
|
|
23690
|
+
}
|
|
23691
|
+
.md\:d-pb1 {
|
|
23692
|
+
padding-bottom: 0.1rem !important;
|
|
23693
|
+
}
|
|
23694
|
+
.md\:d-pb2 {
|
|
23695
|
+
padding-bottom: 0.2rem !important;
|
|
23696
|
+
}
|
|
23697
|
+
.md\:d-pb4 {
|
|
23698
|
+
padding-bottom: 0.4rem !important;
|
|
23699
|
+
}
|
|
23700
|
+
.md\:d-pb6 {
|
|
23701
|
+
padding-bottom: 0.6rem !important;
|
|
23702
|
+
}
|
|
23703
|
+
.md\:d-pb8 {
|
|
23704
|
+
padding-bottom: 0.8rem !important;
|
|
23705
|
+
}
|
|
23706
|
+
.md\:d-pb12 {
|
|
23707
|
+
padding-bottom: 1.2rem !important;
|
|
23708
|
+
}
|
|
23709
|
+
.md\:d-pb16 {
|
|
23710
|
+
padding-bottom: 1.6rem !important;
|
|
23711
|
+
}
|
|
23712
|
+
.md\:d-pb24 {
|
|
23713
|
+
padding-bottom: 2.4rem !important;
|
|
23714
|
+
}
|
|
23715
|
+
.md\:d-pb32 {
|
|
23716
|
+
padding-bottom: 3.2rem !important;
|
|
23717
|
+
}
|
|
23718
|
+
.md\:d-pb48 {
|
|
23719
|
+
padding-bottom: 4.8rem !important;
|
|
23720
|
+
}
|
|
23721
|
+
.md\:d-pb64 {
|
|
23722
|
+
padding-bottom: 6.4rem !important;
|
|
23723
|
+
}
|
|
23724
|
+
.md\:d-pb72 {
|
|
23725
|
+
padding-bottom: 7.2rem !important;
|
|
23726
|
+
}
|
|
23727
|
+
.md\:d-pb84 {
|
|
23728
|
+
padding-bottom: 8.4rem !important;
|
|
23729
|
+
}
|
|
23730
|
+
.md\:d-pb96 {
|
|
23731
|
+
padding-bottom: 9.6rem !important;
|
|
23732
|
+
}
|
|
23733
|
+
.md\:d-pb102 {
|
|
23734
|
+
padding-bottom: 10.2rem !important;
|
|
23735
|
+
}
|
|
23736
|
+
.md\:d-pb114 {
|
|
23737
|
+
padding-bottom: 11.4rem !important;
|
|
23738
|
+
}
|
|
23739
|
+
.md\:d-pb128 {
|
|
23740
|
+
padding-bottom: 12.8rem !important;
|
|
23741
|
+
}
|
|
23742
|
+
.md\:d-pb-unset {
|
|
23743
|
+
padding-bottom: unset !important;
|
|
23744
|
+
}
|
|
23745
|
+
.md\:d-pl0 {
|
|
23746
|
+
padding-left: 0 !important;
|
|
23747
|
+
}
|
|
23748
|
+
.md\:d-pl1 {
|
|
23749
|
+
padding-left: 0.1rem !important;
|
|
23750
|
+
}
|
|
23751
|
+
.md\:d-pl2 {
|
|
23752
|
+
padding-left: 0.2rem !important;
|
|
23753
|
+
}
|
|
23754
|
+
.md\:d-pl4 {
|
|
23755
|
+
padding-left: 0.4rem !important;
|
|
23756
|
+
}
|
|
23757
|
+
.md\:d-pl6 {
|
|
23758
|
+
padding-left: 0.6rem !important;
|
|
23759
|
+
}
|
|
23760
|
+
.md\:d-pl8 {
|
|
23761
|
+
padding-left: 0.8rem !important;
|
|
23762
|
+
}
|
|
23763
|
+
.md\:d-pl12 {
|
|
23764
|
+
padding-left: 1.2rem !important;
|
|
23765
|
+
}
|
|
23766
|
+
.md\:d-pl16 {
|
|
23767
|
+
padding-left: 1.6rem !important;
|
|
23768
|
+
}
|
|
23769
|
+
.md\:d-pl24 {
|
|
23770
|
+
padding-left: 2.4rem !important;
|
|
23771
|
+
}
|
|
23772
|
+
.md\:d-pl32 {
|
|
23773
|
+
padding-left: 3.2rem !important;
|
|
23774
|
+
}
|
|
23775
|
+
.md\:d-pl48 {
|
|
23776
|
+
padding-left: 4.8rem !important;
|
|
23777
|
+
}
|
|
23778
|
+
.md\:d-pl64 {
|
|
23779
|
+
padding-left: 6.4rem !important;
|
|
23780
|
+
}
|
|
23781
|
+
.md\:d-pl72 {
|
|
23782
|
+
padding-left: 7.2rem !important;
|
|
23783
|
+
}
|
|
23784
|
+
.md\:d-pl84 {
|
|
23785
|
+
padding-left: 8.4rem !important;
|
|
23786
|
+
}
|
|
23787
|
+
.md\:d-pl96 {
|
|
23788
|
+
padding-left: 9.6rem !important;
|
|
23789
|
+
}
|
|
23790
|
+
.md\:d-pl102 {
|
|
23791
|
+
padding-left: 10.2rem !important;
|
|
23792
|
+
}
|
|
23793
|
+
.md\:d-pl114 {
|
|
23794
|
+
padding-left: 11.4rem !important;
|
|
23795
|
+
}
|
|
23796
|
+
.md\:d-pl128 {
|
|
23797
|
+
padding-left: 12.8rem !important;
|
|
23798
|
+
}
|
|
23799
|
+
.md\:d-pl-unset {
|
|
23800
|
+
padding-left: unset !important;
|
|
23801
|
+
}
|
|
23491
23802
|
.md\:d-fs-100 {
|
|
23492
23803
|
font-size: var(--fs-100) !important;
|
|
23493
23804
|
}
|
|
@@ -23505,6 +23816,12 @@ body.theme-dark {
|
|
|
23505
23816
|
}
|
|
23506
23817
|
}
|
|
23507
23818
|
@media (max-width: 980px) {
|
|
23819
|
+
.d-root-layout__responsive--lg .d-root-layout__body {
|
|
23820
|
+
flex-direction: column;
|
|
23821
|
+
}
|
|
23822
|
+
.d-root-layout__responsive--lg .d-root-layout__body--invert {
|
|
23823
|
+
flex-direction: column-reverse;
|
|
23824
|
+
}
|
|
23508
23825
|
.lg\:d-stack {
|
|
23509
23826
|
--stack-gap: 0;
|
|
23510
23827
|
--stack-direction: column;
|
|
@@ -24015,6 +24332,120 @@ body.theme-dark {
|
|
|
24015
24332
|
.lg\:d-pr-unset {
|
|
24016
24333
|
padding-right: unset !important;
|
|
24017
24334
|
}
|
|
24335
|
+
.lg\:d-pb0 {
|
|
24336
|
+
padding-bottom: 0 !important;
|
|
24337
|
+
}
|
|
24338
|
+
.lg\:d-pb1 {
|
|
24339
|
+
padding-bottom: 0.1rem !important;
|
|
24340
|
+
}
|
|
24341
|
+
.lg\:d-pb2 {
|
|
24342
|
+
padding-bottom: 0.2rem !important;
|
|
24343
|
+
}
|
|
24344
|
+
.lg\:d-pb4 {
|
|
24345
|
+
padding-bottom: 0.4rem !important;
|
|
24346
|
+
}
|
|
24347
|
+
.lg\:d-pb6 {
|
|
24348
|
+
padding-bottom: 0.6rem !important;
|
|
24349
|
+
}
|
|
24350
|
+
.lg\:d-pb8 {
|
|
24351
|
+
padding-bottom: 0.8rem !important;
|
|
24352
|
+
}
|
|
24353
|
+
.lg\:d-pb12 {
|
|
24354
|
+
padding-bottom: 1.2rem !important;
|
|
24355
|
+
}
|
|
24356
|
+
.lg\:d-pb16 {
|
|
24357
|
+
padding-bottom: 1.6rem !important;
|
|
24358
|
+
}
|
|
24359
|
+
.lg\:d-pb24 {
|
|
24360
|
+
padding-bottom: 2.4rem !important;
|
|
24361
|
+
}
|
|
24362
|
+
.lg\:d-pb32 {
|
|
24363
|
+
padding-bottom: 3.2rem !important;
|
|
24364
|
+
}
|
|
24365
|
+
.lg\:d-pb48 {
|
|
24366
|
+
padding-bottom: 4.8rem !important;
|
|
24367
|
+
}
|
|
24368
|
+
.lg\:d-pb64 {
|
|
24369
|
+
padding-bottom: 6.4rem !important;
|
|
24370
|
+
}
|
|
24371
|
+
.lg\:d-pb72 {
|
|
24372
|
+
padding-bottom: 7.2rem !important;
|
|
24373
|
+
}
|
|
24374
|
+
.lg\:d-pb84 {
|
|
24375
|
+
padding-bottom: 8.4rem !important;
|
|
24376
|
+
}
|
|
24377
|
+
.lg\:d-pb96 {
|
|
24378
|
+
padding-bottom: 9.6rem !important;
|
|
24379
|
+
}
|
|
24380
|
+
.lg\:d-pb102 {
|
|
24381
|
+
padding-bottom: 10.2rem !important;
|
|
24382
|
+
}
|
|
24383
|
+
.lg\:d-pb114 {
|
|
24384
|
+
padding-bottom: 11.4rem !important;
|
|
24385
|
+
}
|
|
24386
|
+
.lg\:d-pb128 {
|
|
24387
|
+
padding-bottom: 12.8rem !important;
|
|
24388
|
+
}
|
|
24389
|
+
.lg\:d-pb-unset {
|
|
24390
|
+
padding-bottom: unset !important;
|
|
24391
|
+
}
|
|
24392
|
+
.lg\:d-pl0 {
|
|
24393
|
+
padding-left: 0 !important;
|
|
24394
|
+
}
|
|
24395
|
+
.lg\:d-pl1 {
|
|
24396
|
+
padding-left: 0.1rem !important;
|
|
24397
|
+
}
|
|
24398
|
+
.lg\:d-pl2 {
|
|
24399
|
+
padding-left: 0.2rem !important;
|
|
24400
|
+
}
|
|
24401
|
+
.lg\:d-pl4 {
|
|
24402
|
+
padding-left: 0.4rem !important;
|
|
24403
|
+
}
|
|
24404
|
+
.lg\:d-pl6 {
|
|
24405
|
+
padding-left: 0.6rem !important;
|
|
24406
|
+
}
|
|
24407
|
+
.lg\:d-pl8 {
|
|
24408
|
+
padding-left: 0.8rem !important;
|
|
24409
|
+
}
|
|
24410
|
+
.lg\:d-pl12 {
|
|
24411
|
+
padding-left: 1.2rem !important;
|
|
24412
|
+
}
|
|
24413
|
+
.lg\:d-pl16 {
|
|
24414
|
+
padding-left: 1.6rem !important;
|
|
24415
|
+
}
|
|
24416
|
+
.lg\:d-pl24 {
|
|
24417
|
+
padding-left: 2.4rem !important;
|
|
24418
|
+
}
|
|
24419
|
+
.lg\:d-pl32 {
|
|
24420
|
+
padding-left: 3.2rem !important;
|
|
24421
|
+
}
|
|
24422
|
+
.lg\:d-pl48 {
|
|
24423
|
+
padding-left: 4.8rem !important;
|
|
24424
|
+
}
|
|
24425
|
+
.lg\:d-pl64 {
|
|
24426
|
+
padding-left: 6.4rem !important;
|
|
24427
|
+
}
|
|
24428
|
+
.lg\:d-pl72 {
|
|
24429
|
+
padding-left: 7.2rem !important;
|
|
24430
|
+
}
|
|
24431
|
+
.lg\:d-pl84 {
|
|
24432
|
+
padding-left: 8.4rem !important;
|
|
24433
|
+
}
|
|
24434
|
+
.lg\:d-pl96 {
|
|
24435
|
+
padding-left: 9.6rem !important;
|
|
24436
|
+
}
|
|
24437
|
+
.lg\:d-pl102 {
|
|
24438
|
+
padding-left: 10.2rem !important;
|
|
24439
|
+
}
|
|
24440
|
+
.lg\:d-pl114 {
|
|
24441
|
+
padding-left: 11.4rem !important;
|
|
24442
|
+
}
|
|
24443
|
+
.lg\:d-pl128 {
|
|
24444
|
+
padding-left: 12.8rem !important;
|
|
24445
|
+
}
|
|
24446
|
+
.lg\:d-pl-unset {
|
|
24447
|
+
padding-left: unset !important;
|
|
24448
|
+
}
|
|
24018
24449
|
.lg\:d-fs-100 {
|
|
24019
24450
|
font-size: var(--fs-100) !important;
|
|
24020
24451
|
}
|
|
@@ -24542,6 +24973,120 @@ body.theme-dark {
|
|
|
24542
24973
|
.xl\:d-pr-unset {
|
|
24543
24974
|
padding-right: unset !important;
|
|
24544
24975
|
}
|
|
24976
|
+
.xl\:d-pb0 {
|
|
24977
|
+
padding-bottom: 0 !important;
|
|
24978
|
+
}
|
|
24979
|
+
.xl\:d-pb1 {
|
|
24980
|
+
padding-bottom: 0.1rem !important;
|
|
24981
|
+
}
|
|
24982
|
+
.xl\:d-pb2 {
|
|
24983
|
+
padding-bottom: 0.2rem !important;
|
|
24984
|
+
}
|
|
24985
|
+
.xl\:d-pb4 {
|
|
24986
|
+
padding-bottom: 0.4rem !important;
|
|
24987
|
+
}
|
|
24988
|
+
.xl\:d-pb6 {
|
|
24989
|
+
padding-bottom: 0.6rem !important;
|
|
24990
|
+
}
|
|
24991
|
+
.xl\:d-pb8 {
|
|
24992
|
+
padding-bottom: 0.8rem !important;
|
|
24993
|
+
}
|
|
24994
|
+
.xl\:d-pb12 {
|
|
24995
|
+
padding-bottom: 1.2rem !important;
|
|
24996
|
+
}
|
|
24997
|
+
.xl\:d-pb16 {
|
|
24998
|
+
padding-bottom: 1.6rem !important;
|
|
24999
|
+
}
|
|
25000
|
+
.xl\:d-pb24 {
|
|
25001
|
+
padding-bottom: 2.4rem !important;
|
|
25002
|
+
}
|
|
25003
|
+
.xl\:d-pb32 {
|
|
25004
|
+
padding-bottom: 3.2rem !important;
|
|
25005
|
+
}
|
|
25006
|
+
.xl\:d-pb48 {
|
|
25007
|
+
padding-bottom: 4.8rem !important;
|
|
25008
|
+
}
|
|
25009
|
+
.xl\:d-pb64 {
|
|
25010
|
+
padding-bottom: 6.4rem !important;
|
|
25011
|
+
}
|
|
25012
|
+
.xl\:d-pb72 {
|
|
25013
|
+
padding-bottom: 7.2rem !important;
|
|
25014
|
+
}
|
|
25015
|
+
.xl\:d-pb84 {
|
|
25016
|
+
padding-bottom: 8.4rem !important;
|
|
25017
|
+
}
|
|
25018
|
+
.xl\:d-pb96 {
|
|
25019
|
+
padding-bottom: 9.6rem !important;
|
|
25020
|
+
}
|
|
25021
|
+
.xl\:d-pb102 {
|
|
25022
|
+
padding-bottom: 10.2rem !important;
|
|
25023
|
+
}
|
|
25024
|
+
.xl\:d-pb114 {
|
|
25025
|
+
padding-bottom: 11.4rem !important;
|
|
25026
|
+
}
|
|
25027
|
+
.xl\:d-pb128 {
|
|
25028
|
+
padding-bottom: 12.8rem !important;
|
|
25029
|
+
}
|
|
25030
|
+
.xl\:d-pb-unset {
|
|
25031
|
+
padding-bottom: unset !important;
|
|
25032
|
+
}
|
|
25033
|
+
.xl\:d-pl0 {
|
|
25034
|
+
padding-left: 0 !important;
|
|
25035
|
+
}
|
|
25036
|
+
.xl\:d-pl1 {
|
|
25037
|
+
padding-left: 0.1rem !important;
|
|
25038
|
+
}
|
|
25039
|
+
.xl\:d-pl2 {
|
|
25040
|
+
padding-left: 0.2rem !important;
|
|
25041
|
+
}
|
|
25042
|
+
.xl\:d-pl4 {
|
|
25043
|
+
padding-left: 0.4rem !important;
|
|
25044
|
+
}
|
|
25045
|
+
.xl\:d-pl6 {
|
|
25046
|
+
padding-left: 0.6rem !important;
|
|
25047
|
+
}
|
|
25048
|
+
.xl\:d-pl8 {
|
|
25049
|
+
padding-left: 0.8rem !important;
|
|
25050
|
+
}
|
|
25051
|
+
.xl\:d-pl12 {
|
|
25052
|
+
padding-left: 1.2rem !important;
|
|
25053
|
+
}
|
|
25054
|
+
.xl\:d-pl16 {
|
|
25055
|
+
padding-left: 1.6rem !important;
|
|
25056
|
+
}
|
|
25057
|
+
.xl\:d-pl24 {
|
|
25058
|
+
padding-left: 2.4rem !important;
|
|
25059
|
+
}
|
|
25060
|
+
.xl\:d-pl32 {
|
|
25061
|
+
padding-left: 3.2rem !important;
|
|
25062
|
+
}
|
|
25063
|
+
.xl\:d-pl48 {
|
|
25064
|
+
padding-left: 4.8rem !important;
|
|
25065
|
+
}
|
|
25066
|
+
.xl\:d-pl64 {
|
|
25067
|
+
padding-left: 6.4rem !important;
|
|
25068
|
+
}
|
|
25069
|
+
.xl\:d-pl72 {
|
|
25070
|
+
padding-left: 7.2rem !important;
|
|
25071
|
+
}
|
|
25072
|
+
.xl\:d-pl84 {
|
|
25073
|
+
padding-left: 8.4rem !important;
|
|
25074
|
+
}
|
|
25075
|
+
.xl\:d-pl96 {
|
|
25076
|
+
padding-left: 9.6rem !important;
|
|
25077
|
+
}
|
|
25078
|
+
.xl\:d-pl102 {
|
|
25079
|
+
padding-left: 10.2rem !important;
|
|
25080
|
+
}
|
|
25081
|
+
.xl\:d-pl114 {
|
|
25082
|
+
padding-left: 11.4rem !important;
|
|
25083
|
+
}
|
|
25084
|
+
.xl\:d-pl128 {
|
|
25085
|
+
padding-left: 12.8rem !important;
|
|
25086
|
+
}
|
|
25087
|
+
.xl\:d-pl-unset {
|
|
25088
|
+
padding-left: unset !important;
|
|
25089
|
+
}
|
|
24545
25090
|
.xl\:d-fs-100 {
|
|
24546
25091
|
font-size: var(--fs-100) !important;
|
|
24547
25092
|
}
|