chore: model form state update

This commit is contained in:
jialin
2024-08-20 15:30:19 +08:00
parent 5d1d8773ec
commit ba1670e56d
16 changed files with 642 additions and 368 deletions
@@ -0,0 +1,29 @@
.label-item {
display: flex;
margin-bottom: 12px;
align-items: center;
justify-content: flex-start;
.seprator {
display: flex;
flex: none;
width: 12px;
align-items: center;
justify-content: center;
color: var(--ant-color-text-tertiary);
}
.btn {
width: 24px;
margin-left: 10px;
flex: none;
}
.label-key {
flex: 1;
}
.label-value {
flex: 1;
}
}
@@ -0,0 +1,18 @@
.wrapper {
position: relative;
padding: 16px 24px;
padding-top: 30px;
border: 1px solid var(--ant-color-border);
border-radius: var(--border-radius-base);
display: flex;
flex-direction: column;
:global {
.label {
position: absolute;
left: 24px;
line-height: 1;
top: 10px;
}
}
}