feat: 修复 flex 布局子元素宽度超出父元素的问题
Some checks failed
/ depcheck (push) Successful in 1m28s
/ build-and-deploy-to-vercel (push) Successful in 1m15s
/ playwright (push) Failing after 2m24s

This commit is contained in:
严浩
2024-12-30 14:29:43 +08:00
parent ee5db6d91c
commit 0b09c3dbb6

View File

@ -33,3 +33,9 @@
max-height: calc(100vh - 10rem);
overflow-y: auto;
}
// flex布局子元素宽度超出父元素问题
.p-select-label {
min-width: 0 !important;
width: 0 !important;
}