@neo4j-ndl/base 3.7.20 → 3.7.22
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/cjs/tokens/js/storybook-design-token.js +1 -1
- package/lib/cjs/tokens/js/tokens-esm.js +1 -1
- package/lib/cjs/tokens/js/tokens.js +1 -1
- package/lib/esm/tokens/js/storybook-design-token.js +1 -1
- package/lib/esm/tokens/js/tokens-esm.js +1 -1
- package/lib/esm/tokens/js/tokens.js +1 -1
- package/lib/neo4j-ds-styles.css +11 -12
- package/lib/tokens/css/tokens.css +1 -1
- package/lib/tokens/js/tokens-raw.js +1 -1
- package/lib/tokens/js/tokens.js +1 -1
- package/lib/tokens/scss/tokens.scss +1 -1
- package/lib/types/tokens/js/storybook-design-token.d.ts +1 -1
- package/package.json +1 -1
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -4766,10 +4766,11 @@ a.ndl-btn {
|
|
|
4766
4766
|
.ndl-wizard.ndl-wizard-large .ndl-wizard-step-text.ndl-vertical {
|
|
4767
4767
|
margin-left:0px;
|
|
4768
4768
|
margin-right:0px;
|
|
4769
|
+
padding-left:16px;
|
|
4769
4770
|
text-align:start;
|
|
4770
4771
|
-moz-column-gap:0;
|
|
4771
4772
|
column-gap:0;
|
|
4772
|
-
grid-column:
|
|
4773
|
+
grid-column:2;
|
|
4773
4774
|
height:unset;
|
|
4774
4775
|
}
|
|
4775
4776
|
.ndl-wizard.ndl-wizard-large .ndl-wizard-step {
|
|
@@ -8472,6 +8473,9 @@ button.ndl-avatar:focus-visible {
|
|
|
8472
8473
|
white-space:nowrap;
|
|
8473
8474
|
padding-left:16px;
|
|
8474
8475
|
}
|
|
8476
|
+
.ndl-side-nav .ndl-side-nav-category-header:first-child:not(.ndl-side-nav-category-header-expanded){
|
|
8477
|
+
display:none;
|
|
8478
|
+
}
|
|
8475
8479
|
.ndl-side-nav .ndl-side-nav-footer {
|
|
8476
8480
|
display:flex;
|
|
8477
8481
|
width:100%;
|
|
@@ -9016,6 +9020,9 @@ button.ndl-avatar:focus-visible {
|
|
|
9016
9020
|
.n-grid-cols-1 {
|
|
9017
9021
|
grid-template-columns:repeat(1, minmax(0, 1fr));
|
|
9018
9022
|
}
|
|
9023
|
+
.n-grid-cols-4 {
|
|
9024
|
+
grid-template-columns:repeat(4, minmax(0, 1fr));
|
|
9025
|
+
}
|
|
9019
9026
|
.n-grid-cols-6 {
|
|
9020
9027
|
grid-template-columns:repeat(6, minmax(0, 1fr));
|
|
9021
9028
|
}
|
|
@@ -9138,9 +9145,6 @@ button.ndl-avatar:focus-visible {
|
|
|
9138
9145
|
.n-rounded-3xl {
|
|
9139
9146
|
border-radius:16px;
|
|
9140
9147
|
}
|
|
9141
|
-
.n-rounded-5xl {
|
|
9142
|
-
border-radius:20px;
|
|
9143
|
-
}
|
|
9144
9148
|
.n-rounded-lg {
|
|
9145
9149
|
border-radius:8px;
|
|
9146
9150
|
}
|
|
@@ -43859,10 +43863,6 @@ button.ndl-avatar:focus-visible {
|
|
|
43859
43863
|
padding-left:32px;
|
|
43860
43864
|
padding-right:32px;
|
|
43861
43865
|
}
|
|
43862
|
-
.n-px-token-9 {
|
|
43863
|
-
padding-left:48px;
|
|
43864
|
-
padding-right:48px;
|
|
43865
|
-
}
|
|
43866
43866
|
.n-py-token-2 {
|
|
43867
43867
|
padding-top:2px;
|
|
43868
43868
|
padding-bottom:2px;
|
|
@@ -43879,10 +43879,6 @@ button.ndl-avatar:focus-visible {
|
|
|
43879
43879
|
padding-top:16px;
|
|
43880
43880
|
padding-bottom:16px;
|
|
43881
43881
|
}
|
|
43882
|
-
.n-py-token-9 {
|
|
43883
|
-
padding-top:48px;
|
|
43884
|
-
padding-bottom:48px;
|
|
43885
|
-
}
|
|
43886
43882
|
.n-pb-\[200px\] {
|
|
43887
43883
|
padding-bottom:200px;
|
|
43888
43884
|
}
|
|
@@ -43901,6 +43897,9 @@ button.ndl-avatar:focus-visible {
|
|
|
43901
43897
|
.n-pr-token-3 {
|
|
43902
43898
|
padding-right:4px;
|
|
43903
43899
|
}
|
|
43900
|
+
.n-pt-6 {
|
|
43901
|
+
padding-top:24px;
|
|
43902
|
+
}
|
|
43904
43903
|
.n-text-left {
|
|
43905
43904
|
text-align:left;
|
|
43906
43905
|
}
|
package/lib/tokens/js/tokens.js
CHANGED