@neo4j-ndl/base 3.2.7 → 3.2.8
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 +8 -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
|
@@ -7161,12 +7161,20 @@ button.ndl-avatar:focus-visible {
|
|
|
7161
7161
|
margin-left:auto;
|
|
7162
7162
|
display:none;
|
|
7163
7163
|
}
|
|
7164
|
+
.ndl-chart {
|
|
7165
|
+
position:relative;
|
|
7166
|
+
display:flex;
|
|
7167
|
+
height:100%;
|
|
7168
|
+
width:100%;
|
|
7169
|
+
flex-direction:column;
|
|
7170
|
+
}
|
|
7164
7171
|
.ndl-chart-legend {
|
|
7165
7172
|
position:relative;
|
|
7166
7173
|
z-index:10;
|
|
7167
7174
|
display:flex;
|
|
7168
7175
|
width:100%;
|
|
7169
7176
|
flex-direction:row;
|
|
7177
|
+
padding:10px;
|
|
7170
7178
|
}
|
|
7171
7179
|
.ndl-chart-legend .ndl-chart-legend-item {
|
|
7172
7180
|
display:flex;
|
package/lib/tokens/js/tokens.js
CHANGED