@neo4j-ndl/base 3.6.0 → 3.6.2
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 +5 -3
- 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
|
@@ -3293,6 +3293,8 @@ a.ndl-btn {
|
|
|
3293
3293
|
position:relative;
|
|
3294
3294
|
z-index:0;
|
|
3295
3295
|
display:inline-flex;
|
|
3296
|
+
width:-moz-fit-content;
|
|
3297
|
+
width:fit-content;
|
|
3296
3298
|
max-width:none;
|
|
3297
3299
|
align-items:center;
|
|
3298
3300
|
gap:4px;
|
|
@@ -7958,7 +7960,7 @@ button.ndl-avatar:focus-visible {
|
|
|
7958
7960
|
}
|
|
7959
7961
|
.ndl-side-nav .ndl-side-nav-inner {
|
|
7960
7962
|
position:relative;
|
|
7961
|
-
z-index:
|
|
7963
|
+
z-index:20;
|
|
7962
7964
|
box-sizing:border-box;
|
|
7963
7965
|
display:flex;
|
|
7964
7966
|
height:100%;
|
|
@@ -7978,7 +7980,6 @@ button.ndl-avatar:focus-visible {
|
|
|
7978
7980
|
position:absolute;
|
|
7979
7981
|
left:0px;
|
|
7980
7982
|
top:0px;
|
|
7981
|
-
z-index:10;
|
|
7982
7983
|
--tw-shadow:var(--theme-shadow-overlay);
|
|
7983
7984
|
--tw-shadow-colored:var(--theme-shadow-overlay);
|
|
7984
7985
|
box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
@@ -8146,7 +8147,8 @@ button.ndl-avatar:focus-visible {
|
|
|
8146
8147
|
margin-top:4px;
|
|
8147
8148
|
margin-bottom:4px;
|
|
8148
8149
|
margin-left:var(--ndl-side-nav-divider-left-margin);
|
|
8149
|
-
|
|
8150
|
+
margin-right:var(--ndl-side-nav-divider-left-margin);
|
|
8151
|
+
width:calc(100% - var(--ndl-side-nav-divider-left-margin) * 2);
|
|
8150
8152
|
}
|
|
8151
8153
|
.ndl-side-nav .ndl-side-nav-item-badge {
|
|
8152
8154
|
width:20px;
|
package/lib/tokens/js/tokens.js
CHANGED