(feature)(supersonic-fe) add memory manage (#1287)

This commit is contained in:
williamhliu
2024-06-29 19:55:35 +08:00
committed by GitHub
parent a3f17b3b68
commit fbe4114775
5 changed files with 147 additions and 31 deletions

View File

@@ -325,10 +325,40 @@
.ant-pro-card-body {
padding: 0;
}
.ant-input-search-button {
width: 42px !important;
}
}
.filterSection {
display: flex;
flex-wrap: wrap;
row-gap: 12px;
column-gap: 20px;
margin-bottom: 20px;
.filterItem {
display: flex;
align-items: center;
column-gap: 12px;
width: 22vw;
.filterItemTitle {
margin-right: 6px;
text-align: right;
}
.filterItemControl {
flex: 1;
}
}
}
.reviewComment {
white-space: nowrap;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 4;
text-overflow: ellipsis;
overflow: hidden;
}