feat: 修复 flex 布局子元素宽度超出父元素的问题

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); max-height: calc(100vh - 10rem);
overflow-y: auto; overflow-y: auto;
} }
// flex布局子元素宽度超出父元素问题
.p-select-label {
min-width: 0 !important;
width: 0 !important;
}