Skip to content

Commit 16f3f4b

Browse files
committed
fix: fix padding style
1 parent e651d32 commit 16f3f4b

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 6.7.3
2+
3+
* Fixed that `padding` on the component root doesn't work.
4+
15
## 6.7.2
26

37
* Fixed that charts inside `<keep-alive>` failed to display after activation.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-echarts",
3-
"version": "6.7.2",
3+
"version": "6.7.3",
44
"description": "Vue.js component for Apache ECharts™.",
55
"author": "GU Yiling <[email protected]>",
66
"scripts": {

src/style.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
x-vue-echarts{display:block;position:relative;width:100%;height:100%;min-width:0}
2-
.vue-echarts-inner{position:absolute!important;top:0;right:0;bottom:0;left:0}
1+
x-vue-echarts{display:flex;flex-direction:column;width:100%;height:100%;min-width:0}
2+
.vue-echarts-inner{flex-grow:1;min-width:0;width:auto!important;height:auto!important}

0 commit comments

Comments
 (0)