Skip to content

Commit

Permalink
fix: IE table resize issue
Browse files Browse the repository at this point in the history
  • Loading branch information
gevaghanayan committed Dec 14, 2020
1 parent b85dae0 commit a3d360f
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 a3d360f

Please sign in to comment.