@neo4j-ndl/base 3.0.3 → 3.0.4
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 +4 -2
- 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
|
@@ -2143,9 +2143,11 @@ a.ndl-btn {
|
|
|
2143
2143
|
color:rgb(var(--theme-palette-neutral-text-default));
|
|
2144
2144
|
}
|
|
2145
2145
|
.ndl-form-item.ndl-type-radio .ndl-form-item-label {
|
|
2146
|
-
|
|
2146
|
+
width:100%;
|
|
2147
2147
|
}
|
|
2148
|
-
.ndl-form-item.ndl-type-radio .ndl-form-
|
|
2148
|
+
.ndl-form-item.ndl-type-radio .ndl-form-label-text {
|
|
2149
|
+
flex-grow:1;
|
|
2150
|
+
flex-basis:0px;
|
|
2149
2151
|
overflow:hidden;
|
|
2150
2152
|
text-overflow:ellipsis;
|
|
2151
2153
|
text-wrap:nowrap;
|
package/lib/tokens/js/tokens.js
CHANGED