修复IconPicker组件双滚动条的问题

This commit is contained in:
jingrow 2025-11-02 13:58:41 +08:00
parent 5abb859559
commit 651eb42c8b

View File

@ -478,9 +478,10 @@ defineExpose({
}
.icon-picker-content {
height: calc(100vh - 120px);
height: 100%;
display: flex;
flex-direction: column;
overflow: hidden; /* 防止外层产生滚动条 */
}
.drawer-footer {
@ -495,6 +496,7 @@ defineExpose({
display: flex;
flex-direction: column;
gap: 12px;
flex-shrink: 0; /* 防止搜索区域被压缩 */
}
.search-controls {