修复样式问题。

This commit is contained in:
dengqichen 2024-12-06 16:20:56 +08:00
parent cc395cc0dd
commit 19ee89418a

View File

@ -5,6 +5,7 @@
flex-direction: column;
&-container {
height: calc(100vh - 170px);
height: 100%;
background: #fff;
border-radius: 2px;
@ -21,6 +22,8 @@
&-content {
position: relative;
height: 100%;
padding: 16px;
flex: 1;
min-height: 0; // 允许内容区域收缩
padding: 8px; // 减小内边距
@ -30,6 +33,7 @@
}
&-graph {
height: 100%;
flex: 1;
min-height: 0; // 允许内容区域收缩
background: #fff;
@ -52,6 +56,10 @@
}
}
.ant-card-body {
height: calc(100% - 57px);
padding: 0;
.ant-card {
height: 100%;
display: flex;
@ -71,6 +79,7 @@
}
.ant-layout {
height: 100%;
flex: 1;
min-height: 0; // 允许内容区域收缩
background: #fff;
@ -84,3 +93,4 @@
}
}
}
}