Merge pull request #195 from DevDengChao/patch-5

Add bottom padding to SkuList table to prevent scrollbar from hiding last row
pull/832/MERGE
芋道源码 2025-11-22 19:14:20 +08:00 committed by GitHub
commit 39623531fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 0 deletions

View File

@ -574,3 +574,10 @@ const getSkuTableRef = () => {
// sku
defineExpose({ generateTableData, validateSku, getSkuTableRef })
</script>
<style>
//
/*noinspection CssUnusedSymbol*/
.el-table.tabNumWidth .el-scrollbar {
padding-bottom: 10px;
}
</style>