fix: 修复 ContentWrap 搜索栏异常滚动条

- 覆盖 Element Plus 新版 el-card body 默认 overflow:auto
- 避免搜索栏 ContentWrap 出现多余内部滚动条
master
YunaiV 2026-06-07 18:10:22 +08:00
parent 70f683fda2
commit a08bdab7eb
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ const prefixCls = getPrefixCls('content-wrap')
defineProps({ defineProps({
title: propTypes.string.def(''), title: propTypes.string.def(''),
message: propTypes.string.def(''), message: propTypes.string.def(''),
bodyStyle: propTypes.object.def({ padding: '10px' }) bodyStyle: propTypes.object.def({ padding: '10px', overflow: 'hidden' })
}) })
</script> </script>