Browse Source

fix: table scrollbar not hidden in windows

pull/3959/head
tanjinzhou 4 years ago
parent
commit
6d33d60d2b
  1. 2
      components/vc-table/src/BodyTable.jsx

2
components/vc-table/src/BodyTable.jsx

@ -38,7 +38,7 @@ export default {
const innerBodyStyle = {};
if (scroll.x || fixed) {
bodyStyle.overflowX = bodyStyle.overflowX || 'scroll';
bodyStyle.overflowX = bodyStyle.overflowX || 'auto';
// Fix weired webkit render bug
// https://github.com/ant-design/ant-design/issues/7783
bodyStyle.WebkitTransform = 'translate3d (0, 0, 0)';

Loading…
Cancel
Save