feat: 为 Cascadeselect 组件添加最大高度和垂直滚动支持
All checks were successful
/ build-and-deploy-to-vercel (push) Successful in 1m35s
/ depcheck (push) Successful in 1m32s
/ playwright (push) Successful in 2m23s

This commit is contained in:
严浩
2024-12-23 18:58:47 +08:00
parent 01d619a857
commit b3e670ee50

View File

@ -28,3 +28,8 @@
.p-dialog { .p-dialog {
overflow: hidden; overflow: hidden;
} }
.p-cascadeselect-list-container {
max-height: calc(100vh - 10rem);
overflow-y: auto;
}