fix: add form validation

This commit is contained in:
jialin
2026-05-25 13:56:44 +08:00
committed by jialin
parent d99c25dd03
commit acef2ef89a
9 changed files with 167 additions and 39 deletions
@@ -0,0 +1,26 @@
.item {
display: flex;
flex-wrap: wrap;
gap: 8px;
align-items: center;
flex: 1;
:global {
.ant-select-dropdown {
> div {
.ant-cascader-menus {
display: grid;
grid-template-columns: 140px 1fr;
}
}
}
}
> *:nth-child(1) {
flex: 1 1 320px;
min-width: 0;
}
> *:nth-child(2) {
flex: 1 1 120px;
min-width: 0;
}
}