style(EnamellingMachineStatus): 调整图表容器宽度和高度样式

将图表容器宽度设置为80vw以确保更好的响应式布局
将图表高度从固定值改为最小高度以适配不同内容
master
huangjinysf 2 months ago
parent cd7888823e
commit 3d4fd8243b

@ -731,6 +731,7 @@ watch(showChart, (newValue) => {
padding: 20px;
background-color: #f5f7fa;
border-radius: 4px;
width: 80vw;
}
.chart-header {
@ -770,6 +771,6 @@ watch(showChart, (newValue) => {
.chart {
width: 100%;
height: 350px;
min-height: 350px;
}
</style>
Loading…
Cancel
Save