Skip to content

Commit

Permalink
Merge pull request #112 from sflpro/feature-IE-resize-issue
Browse files Browse the repository at this point in the history
fix: IE table resize issue
  • Loading branch information
aannnaa7 authored Dec 14, 2020
2 parents b85dae0 + a3d360f commit b621fdb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Table/Column.js
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,9 @@ export class Column extends React.Component {
if (head) {
tableColumnStyle.display = 'none';
} else {
tableColumnStyle.flex = `0 0 calc(100% - ${2 * columnGutter}px)`;
tableColumnStyle.flexBasis = `calc(100% - ${2 * columnGutter}px)`;
tableColumnStyle.flexGrow = 0;
tableColumnStyle.flexShrink = 0;
}
}

Expand Down

0 comments on commit b621fdb

Please sign in to comment.