feat: system-chart-config(30%)

This commit is contained in:
zhangyu
2021-12-02 18:33:28 +08:00
parent 0ce1797524
commit 2410d94d70
5 changed files with 272 additions and 171 deletions

View File

@@ -113,5 +113,32 @@
padding: 1px 3px;
}
}
.system-chart-config {
display: flex;
height: 150px;
align-items: center;
margin-bottom: 10px;
}
.system-chart-config-left{
width: 40%;
height: 100%;
overflow-y: auto;
.system-chart-item {
font-size: 14px;
padding: 3px 5px;
}
.system-chart-item:hover{
color: $--color-primary;
background: $--background-color-base !important;
}
.system-chart-item.is-select{
color: $--color-text-secondary;
}
}
.system-chart-config-right{
flex: 1;
margin-left: 10px;
height: 100%;
}
}
}