fix(table): prop inset take no effect

修复BasicTabled的inset属性不起作用的问题

fixed: #1209
This commit is contained in:
无木 2021-09-15 23:04:36 +08:00
parent 15ea0d2f53
commit 84c7d516df
2 changed files with 9 additions and 7 deletions

View File

@ -1,6 +1,8 @@
### 🐛 Bug Fixes ### 🐛 Bug Fixes
- **BasicTable** 修复可编辑单元格某些情况下无法提交的问题 - **BasicTable**
- 修复可编辑单元格某些情况下无法提交的问题
- 修复`inset`属性不起作用的问题
- **BasicModal** - **BasicModal**
- 修复点击遮罩、按下`Esc`键都不能关闭`Modal`的问题 - 修复点击遮罩、按下`Esc`键都不能关闭`Modal`的问题
- 修复点击关闭按钮、最大化按钮旁边的空白区域也会导致`Modal`关闭的问题 - 修复点击关闭按钮、最大化按钮旁边的空白区域也会导致`Modal`关闭的问题

View File

@ -365,12 +365,6 @@
} }
} }
&--inset {
.ant-table-wrapper {
padding: 0;
}
}
.ant-tag { .ant-tag {
margin-right: 0; margin-right: 0;
} }
@ -431,5 +425,11 @@
padding: 12px 8px; padding: 12px 8px;
} }
} }
&--inset {
.ant-table-wrapper {
padding: 0;
}
}
} }
</style> </style>