@neo4j-ndl/base 3.7.21 → 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 +9 -0
- 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
|
@@ -8473,6 +8473,9 @@ button.ndl-avatar:focus-visible {
|
|
|
8473
8473
|
white-space:nowrap;
|
|
8474
8474
|
padding-left:16px;
|
|
8475
8475
|
}
|
|
8476
|
+
.ndl-side-nav .ndl-side-nav-category-header:first-child:not(.ndl-side-nav-category-header-expanded){
|
|
8477
|
+
display:none;
|
|
8478
|
+
}
|
|
8476
8479
|
.ndl-side-nav .ndl-side-nav-footer {
|
|
8477
8480
|
display:flex;
|
|
8478
8481
|
width:100%;
|
|
@@ -9017,6 +9020,9 @@ button.ndl-avatar:focus-visible {
|
|
|
9017
9020
|
.n-grid-cols-1 {
|
|
9018
9021
|
grid-template-columns:repeat(1, minmax(0, 1fr));
|
|
9019
9022
|
}
|
|
9023
|
+
.n-grid-cols-4 {
|
|
9024
|
+
grid-template-columns:repeat(4, minmax(0, 1fr));
|
|
9025
|
+
}
|
|
9020
9026
|
.n-grid-cols-6 {
|
|
9021
9027
|
grid-template-columns:repeat(6, minmax(0, 1fr));
|
|
9022
9028
|
}
|
|
@@ -43891,6 +43897,9 @@ button.ndl-avatar:focus-visible {
|
|
|
43891
43897
|
.n-pr-token-3 {
|
|
43892
43898
|
padding-right:4px;
|
|
43893
43899
|
}
|
|
43900
|
+
.n-pt-6 {
|
|
43901
|
+
padding-top:24px;
|
|
43902
|
+
}
|
|
43894
43903
|
.n-text-left {
|
|
43895
43904
|
text-align:left;
|
|
43896
43905
|
}
|
package/lib/tokens/js/tokens.js
CHANGED