(feature)(webapp) add display of time consumption at each stage (#331)

This commit is contained in:
williamhliu
2023-11-06 20:35:14 +08:00
committed by GitHub
parent e00b935c1f
commit 6c9983164e
21 changed files with 417 additions and 158 deletions

View File

@@ -49,7 +49,7 @@
width: 600px;
margin-left: 16px;
overflow: hidden;
color: var(--text-color-fourth);
color: var(--text-color-third);
font-size: 12px;
white-space: nowrap;
text-overflow: ellipsis;
@@ -79,17 +79,30 @@
.showCaseModal {
:global {
.ant-modal-body {
padding: 20px 0 !important;
.ant-modal-content {
border-radius: 8px;
.ant-modal-header {
border-radius: 8px 8px 0 0;
}
.ant-modal-body {
padding: 20px 0 !important;
}
}
}
}
.showCase {
height: calc(100vh - 140px);
padding: 0 20px;
overflow-y: auto;
padding-bottom: 2px;
.showCaseDrawer {
:global {
.ant-drawer-content {
border-top-left-radius: 12px;
border-top-right-radius: 12px;
.ant-drawer-body {
padding: 4px 0 !important;
}
}
}
}
:global {