@x-plat/design-system 0.5.33 → 0.5.35
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/dist/components/Chart/index.cjs +152 -192
- package/dist/components/Chart/index.css +4 -1
- package/dist/components/Chart/index.js +140 -180
- package/dist/components/index.cjs +183 -239
- package/dist/components/index.css +4 -1
- package/dist/components/index.js +165 -221
- package/dist/index.cjs +183 -239
- package/dist/index.css +4 -1
- package/dist/index.js +165 -221
- package/package.json +1 -1
|
@@ -1929,11 +1929,14 @@
|
|
|
1929
1929
|
width: 100%;
|
|
1930
1930
|
height: 100%;
|
|
1931
1931
|
position: relative;
|
|
1932
|
+
display: flex;
|
|
1933
|
+
flex-direction: column;
|
|
1932
1934
|
}
|
|
1933
1935
|
.lib-xplat-chart .chart-svg {
|
|
1934
1936
|
display: block;
|
|
1935
1937
|
width: 100%;
|
|
1936
|
-
|
|
1938
|
+
flex: 1;
|
|
1939
|
+
min-height: 0;
|
|
1937
1940
|
will-change: transform;
|
|
1938
1941
|
contain: layout style paint;
|
|
1939
1942
|
}
|