Add bottom padding to prevent scrollbar from hiding last row

pull/832/MERGE
邓超 2025-11-21 11:38:47 +08:00 committed by GitHub
parent 6b28dba11b
commit c099f27f17
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>